diff options
| author | djm <> | 2008-09-06 12:15:54 +0000 |
|---|---|---|
| committer | djm <> | 2008-09-06 12:15:54 +0000 |
| commit | f1625f274acf5dcd5601f6cb5e29e233b2a441a3 (patch) | |
| tree | 44899ddfbef8f24aacbea50086c041c1b150f6d6 /src/lib/libssl/test | |
| parent | 4f828b924f54507141fb95ebe49dfcd261945e85 (diff) | |
| download | openbsd-f1625f274acf5dcd5601f6cb5e29e233b2a441a3.tar.gz openbsd-f1625f274acf5dcd5601f6cb5e29e233b2a441a3.tar.bz2 openbsd-f1625f274acf5dcd5601f6cb5e29e233b2a441a3.zip | |
import of OpenSSL 0.9.8h
Diffstat (limited to 'src/lib/libssl/test')
| -rw-r--r-- | src/lib/libssl/test/Makefile | 725 | ||||
| -rw-r--r-- | src/lib/libssl/test/evptests.txt | 245 | ||||
| -rw-r--r-- | src/lib/libssl/test/maketests.com | 6 | ||||
| -rw-r--r-- | src/lib/libssl/test/tests.com | 15 |
4 files changed, 361 insertions, 630 deletions
diff --git a/src/lib/libssl/test/Makefile b/src/lib/libssl/test/Makefile index 189d14ed49..62f9b86052 100644 --- a/src/lib/libssl/test/Makefile +++ b/src/lib/libssl/test/Makefile | |||
| @@ -7,11 +7,6 @@ TOP= .. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
| 9 | CFLAG= -g | 9 | CFLAG= -g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 12 | INSTALLTOP= /usr/local/ssl | ||
| 13 | MAKEFILE= Makefile | ||
| 14 | MAKEDEPPROG= makedepend | ||
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | 10 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) |
| 16 | PERL= perl | 11 | PERL= perl |
| 17 | # KRB5 stuff | 12 | # KRB5 stuff |
| @@ -35,11 +30,14 @@ LIBSSL= -L.. -lssl | |||
| 35 | 30 | ||
| 36 | BNTEST= bntest | 31 | BNTEST= bntest |
| 37 | ECTEST= ectest | 32 | ECTEST= ectest |
| 33 | ECDSATEST= ecdsatest | ||
| 34 | ECDHTEST= ecdhtest | ||
| 38 | EXPTEST= exptest | 35 | EXPTEST= exptest |
| 39 | IDEATEST= ideatest | 36 | IDEATEST= ideatest |
| 40 | SHATEST= shatest | 37 | SHATEST= shatest |
| 41 | SHA1TEST= sha1test | 38 | SHA1TEST= sha1test |
| 42 | FIPS_SHATEST= fips_shatest | 39 | SHA256TEST= sha256t |
| 40 | SHA512TEST= sha512t | ||
| 43 | MDC2TEST= mdc2test | 41 | MDC2TEST= mdc2test |
| 44 | RMDTEST= rmdtest | 42 | RMDTEST= rmdtest |
| 45 | MD2TEST= md2test | 43 | MD2TEST= md2test |
| @@ -52,59 +50,46 @@ RC5TEST= rc5test | |||
| 52 | BFTEST= bftest | 50 | BFTEST= bftest |
| 53 | CASTTEST= casttest | 51 | CASTTEST= casttest |
| 54 | DESTEST= destest | 52 | DESTEST= destest |
| 55 | FIPS_DESTEST= fips_desmovs | ||
| 56 | RANDTEST= randtest | 53 | RANDTEST= randtest |
| 57 | FIPS_RANDTEST= fips_randtest | ||
| 58 | DHTEST= dhtest | 54 | DHTEST= dhtest |
| 59 | DSATEST= dsatest | 55 | DSATEST= dsatest |
| 60 | FIPS_DSATEST= fips_dsatest | ||
| 61 | METHTEST= methtest | 56 | METHTEST= methtest |
| 62 | SSLTEST= ssltest | 57 | SSLTEST= ssltest |
| 63 | RSATEST= rsa_test | 58 | RSATEST= rsa_test |
| 64 | ENGINETEST= enginetest | 59 | ENGINETEST= enginetest |
| 65 | EVPTEST= evp_test | 60 | EVPTEST= evp_test |
| 66 | FIPS_AESTEST= fips_aesavs | 61 | IGETEST= igetest |
| 67 | FIPS_HMACTEST= fips_hmactest | ||
| 68 | FIPS_RSAVTEST= fips_rsavtest | ||
| 69 | FIPS_RSASTEST= fips_rsastest | ||
| 70 | FIPS_RSAGTEST= fips_rsagtest | ||
| 71 | FIPS_DSSVS= fips_dssvs | ||
| 72 | FIPS_RNGVS= fips_rngvs | ||
| 73 | FIPS_TEST_SUITE=fips_test_suite | ||
| 74 | 62 | ||
| 75 | TESTS= alltests | 63 | TESTS= alltests |
| 76 | 64 | ||
| 77 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \ | 65 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \ |
| 66 | $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \ | ||
| 78 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ | 67 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ |
| 79 | $(DESTEST)$(EXE_EXT) $(FIPS_DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(FIPS_SHATEST)$(EXE_EXT) $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ | 68 | $(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \ |
| 80 | $(RANDTEST)$(EXE_EXT) $(FIPS_RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ | 69 | $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ |
| 81 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(FIPS_DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ | 70 | $(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ |
| 82 | $(EVPTEST)$(EXE_EXT) $(FIPS_AESTEST)$(EXE_EXT) \ | 71 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ |
| 83 | $(FIPS_HMACTEST)$(EXE_EXT) $(FIPS_RSAVTEST)$(EXE_EXT) \ | 72 | $(EVPTEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) |
| 84 | $(FIPS_RSASTEST)$(EXE_EXT) $(FIPS_RSAGTEST)$(EXE_EXT) \ | ||
| 85 | $(FIPS_DSSVS)$(EXE_EXT) $(FIPS_RNGVS)$(EXE_EXT) \ | ||
| 86 | $(FIPS_TEST_SUITE)$(EXE_EXT) | ||
| 87 | 73 | ||
| 88 | # $(METHTEST)$(EXE_EXT) | 74 | # $(METHTEST)$(EXE_EXT) |
| 89 | 75 | ||
| 90 | OBJ= $(BNTEST).o $(ECTEST).o $(IDEATEST).o $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ | 76 | OBJ= $(BNTEST).o $(ECTEST).o $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \ |
| 77 | $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ | ||
| 91 | $(HMACTEST).o \ | 78 | $(HMACTEST).o \ |
| 92 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ | 79 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ |
| 93 | $(DESTEST).o $(FIPS_DESTEST).o $(SHATEST).o $(SHA1TEST).o $(FIPS_SHATEST).o $(MDC2TEST).o $(RMDTEST).o \ | 80 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \ |
| 94 | $(RANDTEST).o $(FIPS_RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ | 81 | $(MDC2TEST).o $(RMDTEST).o \ |
| 95 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(FIPS_DSATEST).o $(EXPTEST).o $(RSATEST).o \ | 82 | $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ |
| 96 | $(EVPTEST).o $(FIPS_AESTEST).o $(FIPS_HMACTEST).o $(FIPS_RSAVTEST).o \ | 83 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \ |
| 97 | $(FIPS_RSASTEST).o $(FIPS_RSAGTEST).o $(FIPS_DSSVS).o $(FIPS_RNGVS).o \ | 84 | $(EVPTEST).o $(IGETEST).o |
| 98 | $(FIPS_TEST_SUITE).o | 85 | SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \ |
| 99 | SRC= $(BNTEST).c $(ECTEST).c $(IDEATEST).c $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ | 86 | $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ |
| 100 | $(HMACTEST).c \ | 87 | $(HMACTEST).c \ |
| 101 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ | 88 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ |
| 102 | $(DESTEST).c $(FIPS_DESTEST).c $(SHATEST).c $(SHA1TEST).c $(FIPS_SHATEST).c $(MDC2TEST).c $(RMDTEST).c \ | 89 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ |
| 103 | $(RANDTEST).c $(FIPS_RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ | 90 | $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ |
| 104 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(FIPS_DSATEST).c $(EXPTEST).c $(RSATEST).c \ | 91 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \ |
| 105 | $(EVPTEST).c $(FIPS_AESTEST).c $(FIPS_HMACTEST).c $(FIPS_RSAVTEST).c \ | 92 | $(EVPTEST).c $(IGETEST).c |
| 106 | $(FIPS_RSASTEST).c $(FIPS_RSAGTEST).c $(FIPS_DSSVS).c $(FIPS_RNGVS).c \ | ||
| 107 | $(FIPS_TEST_SUITE).c | ||
| 108 | 93 | ||
| 109 | EXHEADER= | 94 | EXHEADER= |
| 110 | HEADER= $(EXHEADER) | 95 | HEADER= $(EXHEADER) |
| @@ -143,17 +128,10 @@ alltests: \ | |||
| 143 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | 128 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ |
| 144 | test_md2 test_mdc2 \ | 129 | test_md2 test_mdc2 \ |
| 145 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ | 130 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ |
| 146 | test_rand test_bn test_ec test_enc test_x509 test_rsa test_crl test_sid \ | 131 | test_rand test_bn test_ec test_ecdsa test_ecdh \ |
| 132 | test_enc test_x509 test_rsa test_crl test_sid \ | ||
| 147 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ | 133 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ |
| 148 | test_ss test_ca test_engine test_evp test_ssl | 134 | test_ss test_ca test_engine test_evp test_ssl test_ige |
| 149 | # temporarily removed | ||
| 150 | # fips_test_aes | ||
| 151 | |||
| 152 | fips_test_aes: | ||
| 153 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
| 154 | mkdir -p fips_aes_data/rsp; \ | ||
| 155 | ../util/shlib_wrap.sh ./$(FIPS_AESTEST) -d fips_aes_data/list; \ | ||
| 156 | fi | ||
| 157 | 135 | ||
| 158 | test_evp: | 136 | test_evp: |
| 159 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt | 137 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt |
| @@ -167,9 +145,8 @@ test_idea: | |||
| 167 | test_sha: | 145 | test_sha: |
| 168 | ../util/shlib_wrap.sh ./$(SHATEST) | 146 | ../util/shlib_wrap.sh ./$(SHATEST) |
| 169 | ../util/shlib_wrap.sh ./$(SHA1TEST) | 147 | ../util/shlib_wrap.sh ./$(SHA1TEST) |
| 170 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 148 | ../util/shlib_wrap.sh ./$(SHA256TEST) |
| 171 | ../util/shlib_wrap.sh ./$(FIPS_SHATEST) < SHAmix.req | diff -w SHAmix.fax - ; \ | 149 | ../util/shlib_wrap.sh ./$(SHA512TEST) |
| 172 | fi | ||
| 173 | 150 | ||
| 174 | test_mdc2: | 151 | test_mdc2: |
| 175 | ../util/shlib_wrap.sh ./$(MDC2TEST) | 152 | ../util/shlib_wrap.sh ./$(MDC2TEST) |
| @@ -206,9 +183,6 @@ test_rc5: | |||
| 206 | 183 | ||
| 207 | test_rand: | 184 | test_rand: |
| 208 | ../util/shlib_wrap.sh ./$(RANDTEST) | 185 | ../util/shlib_wrap.sh ./$(RANDTEST) |
| 209 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
| 210 | ../util/shlib_wrap.sh ./$(FIPS_RANDTEST); \ | ||
| 211 | fi | ||
| 212 | 186 | ||
| 213 | test_enc: | 187 | test_enc: |
| 214 | @sh ./testenc | 188 | @sh ./testenc |
| @@ -221,7 +195,7 @@ test_x509: | |||
| 221 | echo test second x509v3 certificate | 195 | echo test second x509v3 certificate |
| 222 | sh ./tx509 v3-cert2.pem 2>/dev/null | 196 | sh ./tx509 v3-cert2.pem 2>/dev/null |
| 223 | 197 | ||
| 224 | test_rsa: | 198 | test_rsa: $(RSATEST)$(EXE_EXT) |
| 225 | @sh ./trsa 2>/dev/null | 199 | @sh ./trsa 2>/dev/null |
| 226 | ../util/shlib_wrap.sh ./$(RSATEST) | 200 | ../util/shlib_wrap.sh ./$(RSATEST) |
| 227 | 201 | ||
| @@ -252,10 +226,18 @@ test_ec: | |||
| 252 | @echo 'test elliptic curves' | 226 | @echo 'test elliptic curves' |
| 253 | ../util/shlib_wrap.sh ./$(ECTEST) | 227 | ../util/shlib_wrap.sh ./$(ECTEST) |
| 254 | 228 | ||
| 229 | test_ecdsa: | ||
| 230 | @echo 'test ecdsa' | ||
| 231 | ../util/shlib_wrap.sh ./$(ECDSATEST) | ||
| 232 | |||
| 233 | test_ecdh: | ||
| 234 | @echo 'test ecdh' | ||
| 235 | ../util/shlib_wrap.sh ./$(ECDHTEST) | ||
| 236 | |||
| 255 | test_verify: | 237 | test_verify: |
| 256 | @echo "The following command should have some OK's and some failures" | 238 | @echo "The following command should have some OK's and some failures" |
| 257 | @echo "There are definitly a few expired certificates" | 239 | @echo "There are definitly a few expired certificates" |
| 258 | -../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem | 240 | ../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem |
| 259 | 241 | ||
| 260 | test_dh: | 242 | test_dh: |
| 261 | @echo "Generate a set of DH parameters" | 243 | @echo "Generate a set of DH parameters" |
| @@ -265,10 +247,6 @@ test_dsa: | |||
| 265 | @echo "Generate a set of DSA parameters" | 247 | @echo "Generate a set of DSA parameters" |
| 266 | ../util/shlib_wrap.sh ./$(DSATEST) | 248 | ../util/shlib_wrap.sh ./$(DSATEST) |
| 267 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 | 249 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 |
| 268 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
| 269 | ../util/shlib_wrap.sh ./$(FIPS_DSATEST); \ | ||
| 270 | ../util/shlib_wrap.sh ./$(FIPS_DSATEST) -app2_1; \ | ||
| 271 | fi | ||
| 272 | 250 | ||
| 273 | test_gen: | 251 | test_gen: |
| 274 | @echo "Generate and verify a certificate request" | 252 | @echo "Generate and verify a certificate request" |
| @@ -288,9 +266,7 @@ test_engine: | |||
| 288 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ | 266 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ |
| 289 | intP1.ss intP2.ss | 267 | intP1.ss intP2.ss |
| 290 | @echo "test SSL protocol" | 268 | @echo "test SSL protocol" |
| 291 | @if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 269 | ../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist |
| 292 | sh ./testfipsssl keyU.ss certU.ss certCA.ss; \ | ||
| 293 | fi | ||
| 294 | @sh ./testssl keyU.ss certU.ss certCA.ss | 270 | @sh ./testssl keyU.ss certU.ss certCA.ss |
| 295 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss | 271 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss |
| 296 | @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss | 272 | @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss |
| @@ -307,11 +283,19 @@ test_aes: #$(AESTEST) | |||
| 307 | # @echo "test Rijndael" | 283 | # @echo "test Rijndael" |
| 308 | # ../util/shlib_wrap.sh ./$(AESTEST) | 284 | # ../util/shlib_wrap.sh ./$(AESTEST) |
| 309 | 285 | ||
| 286 | test_ige: $(IGETEST)$(EXE_EXT) | ||
| 287 | @echo "Test IGE mode" | ||
| 288 | ../util/shlib_wrap.sh ./$(IGETEST) | ||
| 289 | |||
| 310 | lint: | 290 | lint: |
| 311 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 291 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 312 | 292 | ||
| 313 | depend: | 293 | depend: |
| 314 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC) | 294 | @if [ -z "$(THIS)" ]; then \ |
| 295 | $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \ | ||
| 296 | else \ | ||
| 297 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \ | ||
| 298 | fi | ||
| 315 | 299 | ||
| 316 | dclean: | 300 | dclean: |
| 317 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 301 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -326,43 +310,14 @@ $(DLIBSSL): | |||
| 326 | $(DLIBCRYPTO): | 310 | $(DLIBCRYPTO): |
| 327 | (cd ..; $(MAKE) DIRS=crypto all) | 311 | (cd ..; $(MAKE) DIRS=crypto all) |
| 328 | 312 | ||
| 329 | BUILD_CMD=SHARED_LIBS="$(SHARED_LIBS)"; \ | 313 | BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ |
| 330 | if [ "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \ | 314 | shlib_target="$(SHLIB_TARGET)"; \ |
| 331 | SHARED_LIBS=""; \ | ||
| 332 | fi; \ | 315 | fi; \ |
| 333 | if [ -z "$$SHARED_LIBS" ]; then \ | 316 | LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \ |
| 334 | set -x; $${CC:-$(CC)} -o $$target$(EXE_EXT) $(CFLAGS) $$target.o $(PEX_LIBS) $(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO) $(EX_LIBS) ; \ | 317 | $(MAKE) -f $(TOP)/Makefile.shared -e \ |
| 335 | else set -x; LD_LIBRARY_PATH=..:$$LD_LIBRARY_PATH \ | 318 | APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \ |
| 336 | $(CC) -o $$target$(EXE_EXT) $(CFLAGS) $$target.o $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \ | 319 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ |
| 337 | fi | 320 | link_app.$${shlib_target} |
| 338 | |||
| 339 | FIPS_BUILD_CMD=if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
| 340 | FIPSLD_CC=$(CC); CC=$(TOP)/fips-1.0/fipsld; export CC FIPSLD_CC; \ | ||
| 341 | fi; $(BUILD_CMD) | ||
| 342 | |||
| 343 | $(FIPS_AESTEST)$(EXE_EXT): $(FIPS_AESTEST).o $(DLIBCRYPTO) | ||
| 344 | @target=$(FIPS_AESTEST); $(FIPS_BUILD_CMD) | ||
| 345 | |||
| 346 | $(FIPS_HMACTEST)$(EXE_EXT): $(FIPS_HMACTEST).o $(DLIBCRYPTO) | ||
| 347 | @target=$(FIPS_HMACTEST); $(FIPS_BUILD_CMD) | ||
| 348 | |||
| 349 | $(FIPS_RSAVTEST)$(EXE_EXT): $(FIPS_RSAVTEST).o $(DLIBCRYPTO) | ||
| 350 | @target=$(FIPS_RSAVTEST); $(FIPS_BUILD_CMD) | ||
| 351 | |||
| 352 | $(FIPS_RSASTEST)$(EXE_EXT): $(FIPS_RSASTEST).o $(DLIBCRYPTO) | ||
| 353 | @target=$(FIPS_RSASTEST); $(FIPS_BUILD_CMD) | ||
| 354 | |||
| 355 | $(FIPS_RSAGTEST)$(EXE_EXT): $(FIPS_RSAGTEST).o $(DLIBCRYPTO) | ||
| 356 | @target=$(FIPS_RSAGTEST); $(FIPS_BUILD_CMD) | ||
| 357 | |||
| 358 | $(FIPS_DSSVS)$(EXE_EXT): $(FIPS_DSSVS).o $(DLIBCRYPTO) | ||
| 359 | @target=$(FIPS_DSSVS); $(FIPS_BUILD_CMD) | ||
| 360 | |||
| 361 | $(FIPS_RNGVS)$(EXE_EXT): $(FIPS_RNGVS).o $(DLIBCRYPTO) | ||
| 362 | @target=$(FIPS_RNGVS); $(FIPS_BUILD_CMD) | ||
| 363 | |||
| 364 | $(FIPS_TEST_SUITE)$(EXE_EXT): $(FIPS_TEST_SUITE).o $(DLIBCRYPTO) | ||
| 365 | @target=$(FIPS_TEST_SUITE); $(FIPS_BUILD_CMD) | ||
| 366 | 321 | ||
| 367 | $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO) | 322 | $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO) |
| 368 | @target=$(RSATEST); $(BUILD_CMD) | 323 | @target=$(RSATEST); $(BUILD_CMD) |
| @@ -388,8 +343,11 @@ $(SHATEST)$(EXE_EXT): $(SHATEST).o $(DLIBCRYPTO) | |||
| 388 | $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO) | 343 | $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO) |
| 389 | @target=$(SHA1TEST); $(BUILD_CMD) | 344 | @target=$(SHA1TEST); $(BUILD_CMD) |
| 390 | 345 | ||
| 391 | $(FIPS_SHATEST)$(EXE_EXT): $(FIPS_SHATEST).o $(DLIBCRYPTO) | 346 | $(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO) |
| 392 | @target=$(FIPS_SHATEST); $(FIPS_BUILD_CMD) | 347 | @target=$(SHA256TEST); $(BUILD_CMD) |
| 348 | |||
| 349 | $(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO) | ||
| 350 | @target=$(SHA512TEST); $(BUILD_CMD) | ||
| 393 | 351 | ||
| 394 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) | 352 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) |
| 395 | @target=$(RMDTEST); $(BUILD_CMD) | 353 | @target=$(RMDTEST); $(BUILD_CMD) |
| @@ -424,29 +382,20 @@ $(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO) | |||
| 424 | $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO) | 382 | $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO) |
| 425 | @target=$(DESTEST); $(BUILD_CMD) | 383 | @target=$(DESTEST); $(BUILD_CMD) |
| 426 | 384 | ||
| 427 | $(FIPS_DESTEST)$(EXE_EXT): $(FIPS_DESTEST).o $(DLIBCRYPTO) | ||
| 428 | @target=$(FIPS_DESTEST); $(FIPS_BUILD_CMD) | ||
| 429 | |||
| 430 | $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO) | 385 | $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO) |
| 431 | @target=$(RANDTEST); $(BUILD_CMD) | 386 | @target=$(RANDTEST); $(BUILD_CMD) |
| 432 | 387 | ||
| 433 | $(FIPS_RANDTEST)$(EXE_EXT): $(FIPS_RANDTEST).o $(DLIBCRYPTO) | ||
| 434 | @target=$(FIPS_RANDTEST); $(FIPS_BUILD_CMD) | ||
| 435 | |||
| 436 | $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO) | 388 | $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO) |
| 437 | @target=$(DHTEST); $(BUILD_CMD) | 389 | @target=$(DHTEST); $(BUILD_CMD) |
| 438 | 390 | ||
| 439 | $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO) | 391 | $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO) |
| 440 | @target=$(DSATEST); $(BUILD_CMD) | 392 | @target=$(DSATEST); $(BUILD_CMD) |
| 441 | 393 | ||
| 442 | $(FIPS_DSATEST)$(EXE_EXT): $(FIPS_DSATEST).o $(DLIBCRYPTO) | ||
| 443 | @target=$(FIPS_DSATEST); $(FIPS_BUILD_CMD) | ||
| 444 | |||
| 445 | $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO) | 394 | $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO) |
| 446 | @target=$(METHTEST); $(BUILD_CMD) | 395 | @target=$(METHTEST); $(BUILD_CMD) |
| 447 | 396 | ||
| 448 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) | 397 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) |
| 449 | @target=$(SSLTEST); $(FIPS_BUILD_CMD) | 398 | @target=$(SSLTEST); $(BUILD_CMD) |
| 450 | 399 | ||
| 451 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) | 400 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) |
| 452 | @target=$(ENGINETEST); $(BUILD_CMD) | 401 | @target=$(ENGINETEST); $(BUILD_CMD) |
| @@ -454,48 +403,53 @@ $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) | |||
| 454 | $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO) | 403 | $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO) |
| 455 | @target=$(EVPTEST); $(BUILD_CMD) | 404 | @target=$(EVPTEST); $(BUILD_CMD) |
| 456 | 405 | ||
| 406 | $(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO) | ||
| 407 | @target=$(ECDSATEST); $(BUILD_CMD) | ||
| 408 | |||
| 409 | $(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO) | ||
| 410 | @target=$(ECDHTEST); $(BUILD_CMD) | ||
| 411 | |||
| 412 | $(IGETEST)$(EXE_EXT): $(IGETEST).o $(DLIBCRYPTO) | ||
| 413 | @target=$(IGETEST); $(BUILD_CMD) | ||
| 414 | |||
| 457 | #$(AESTEST).o: $(AESTEST).c | 415 | #$(AESTEST).o: $(AESTEST).c |
| 458 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c | 416 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c |
| 459 | 417 | ||
| 460 | #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO) | 418 | #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO) |
| 461 | # @target=$(AESTEST); $(BUILD_CMD) | 419 | # if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \ |
| 420 | # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \ | ||
| 421 | # else \ | ||
| 422 | # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \ | ||
| 423 | # fi | ||
| 462 | 424 | ||
| 463 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) | 425 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) |
| 464 | @target=dummytest; $(BUILD_CMD) | 426 | @target=dummytest$; $(BUILD_CMD) |
| 465 | 427 | ||
| 466 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 428 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 467 | 429 | ||
| 468 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h | 430 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h |
| 469 | bftest.o: ../include/openssl/opensslconf.h bftest.c | 431 | bftest.o: ../include/openssl/opensslconf.h bftest.c |
| 470 | bntest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 432 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 471 | bntest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 472 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 433 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 473 | bntest.o: ../include/openssl/cast.h ../include/openssl/crypto.h | 434 | bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
| 474 | bntest.o: ../include/openssl/des.h ../include/openssl/des_old.h | 435 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 475 | bntest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 436 | bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
| 476 | bntest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 437 | bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
| 477 | bntest.o: ../include/openssl/evp.h ../include/openssl/idea.h | 438 | bntest.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
| 478 | bntest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 439 | bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 479 | bntest.o: ../include/openssl/md4.h ../include/openssl/md5.h | 440 | bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 480 | bntest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 441 | bntest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
| 481 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 442 | bntest.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
| 482 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 443 | bntest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 483 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 444 | bntest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 484 | bntest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 445 | bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bntest.c |
| 485 | bntest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 486 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 487 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 488 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 489 | bntest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 490 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | ||
| 491 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h | 446 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h |
| 492 | casttest.o: ../include/openssl/opensslconf.h casttest.c | 447 | casttest.o: ../include/openssl/opensslconf.h casttest.c |
| 493 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 448 | destest.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| 494 | destest.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h | 449 | destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
| 495 | destest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 450 | destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 496 | destest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 451 | destest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 497 | destest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 452 | destest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h destest.c |
| 498 | destest.o: ../include/openssl/ui_compat.h destest.c | ||
| 499 | dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h | 453 | dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h |
| 500 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 454 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
| 501 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 455 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| @@ -511,47 +465,52 @@ dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
| 511 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 465 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
| 512 | dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 466 | dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 513 | dsatest.o: ../include/openssl/symhacks.h dsatest.c | 467 | dsatest.o: ../include/openssl/symhacks.h dsatest.c |
| 468 | ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 469 | ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 470 | ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
| 471 | ecdhtest.o: ../include/openssl/ecdh.h ../include/openssl/err.h | ||
| 472 | ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 473 | ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 474 | ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 475 | ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
| 476 | ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 477 | ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c | ||
| 478 | ecdsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 479 | ecdsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 480 | ecdsatest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
| 481 | ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | ||
| 482 | ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 483 | ecdsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 484 | ecdsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 485 | ecdsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 486 | ecdsatest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
| 487 | ecdsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 488 | ecdsatest.o: ecdsatest.c | ||
| 514 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 489 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 515 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 490 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
| 516 | ectest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 517 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | 491 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
| 518 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h | 492 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h |
| 519 | ectest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 493 | ectest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
| 494 | ectest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 520 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 495 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 521 | ectest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 496 | ectest.o: ../include/openssl/rand.h ../include/openssl/safestack.h |
| 522 | ectest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 497 | ectest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h ectest.c |
| 523 | ectest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h ectest.c | 498 | enginetest.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
| 524 | enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 499 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 525 | enginetest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 526 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 527 | enginetest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 528 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h | 500 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h |
| 529 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 501 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h |
| 530 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 502 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 531 | enginetest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 532 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 503 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 533 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 504 | enginetest.o: ../include/openssl/symhacks.h enginetest.c |
| 534 | enginetest.o: enginetest.c | 505 | evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 535 | evp_test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 536 | evp_test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 537 | evp_test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 538 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 506 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
| 539 | evp_test.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 540 | evp_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 541 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 507 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h |
| 542 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h | 508 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 543 | evp_test.o: ../include/openssl/idea.h ../include/openssl/lhash.h | 509 | evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
| 544 | evp_test.o: ../include/openssl/md2.h ../include/openssl/md4.h | 510 | evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 545 | evp_test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 511 | evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 546 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 512 | evp_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 547 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 513 | evp_test.o: ../include/openssl/symhacks.h evp_test.c |
| 548 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 549 | evp_test.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 550 | evp_test.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 551 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 552 | evp_test.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 553 | evp_test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 554 | evp_test.o: ../include/openssl/ui_compat.h evp_test.c | ||
| 555 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h | 514 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h |
| 556 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 515 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 557 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | 516 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h |
| @@ -559,314 +518,65 @@ exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
| 559 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 518 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
| 560 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 519 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 561 | exptest.o: ../include/openssl/symhacks.h exptest.c | 520 | exptest.o: ../include/openssl/symhacks.h exptest.c |
| 562 | fips_aesavs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 521 | hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 563 | fips_aesavs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 522 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 564 | fips_aesavs.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 565 | fips_aesavs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 566 | fips_aesavs.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 567 | fips_aesavs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 568 | fips_aesavs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 569 | fips_aesavs.o: ../include/openssl/fips.h ../include/openssl/idea.h | ||
| 570 | fips_aesavs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 571 | fips_aesavs.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 572 | fips_aesavs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 573 | fips_aesavs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 574 | fips_aesavs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 575 | fips_aesavs.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 576 | fips_aesavs.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 577 | fips_aesavs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 578 | fips_aesavs.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 579 | fips_aesavs.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 580 | fips_aesavs.o: ../include/openssl/ui_compat.h fips_aesavs.c | ||
| 581 | fips_desmovs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 582 | fips_desmovs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 583 | fips_desmovs.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 584 | fips_desmovs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 585 | fips_desmovs.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 586 | fips_desmovs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 587 | fips_desmovs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 588 | fips_desmovs.o: ../include/openssl/fips.h ../include/openssl/idea.h | ||
| 589 | fips_desmovs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 590 | fips_desmovs.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 591 | fips_desmovs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 592 | fips_desmovs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 593 | fips_desmovs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 594 | fips_desmovs.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 595 | fips_desmovs.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 596 | fips_desmovs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 597 | fips_desmovs.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 598 | fips_desmovs.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 599 | fips_desmovs.o: ../include/openssl/ui_compat.h fips_desmovs.c | ||
| 600 | fips_dsatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 601 | fips_dsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 602 | fips_dsatest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 603 | fips_dsatest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 604 | fips_dsatest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 605 | fips_dsatest.o: ../include/openssl/err.h ../include/openssl/fips.h | ||
| 606 | fips_dsatest.o: ../include/openssl/fips_rand.h ../include/openssl/lhash.h | ||
| 607 | fips_dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 608 | fips_dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 609 | fips_dsatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 610 | fips_dsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 611 | fips_dsatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 612 | fips_dsatest.o: fips_dsatest.c | ||
| 613 | fips_dssvs.o: ../include/openssl/opensslconf.h fips_dssvs.c | ||
| 614 | fips_hmactest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 615 | fips_hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 616 | fips_hmactest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 617 | fips_hmactest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
| 618 | fips_hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 619 | fips_hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 620 | fips_hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 621 | fips_hmactest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 622 | fips_hmactest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
| 623 | fips_hmactest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 624 | fips_hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 625 | fips_hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 626 | fips_hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 627 | fips_hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 628 | fips_hmactest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
| 629 | fips_hmactest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 630 | fips_hmactest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 631 | fips_hmactest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 632 | fips_hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 633 | fips_hmactest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 634 | fips_hmactest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 635 | fips_hmactest.o: ../include/openssl/x509v3.h fips_hmactest.c | ||
| 636 | fips_randtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h | ||
| 637 | fips_randtest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 638 | fips_randtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 639 | fips_randtest.o: ../include/openssl/fips_rand.h ../include/openssl/lhash.h | ||
| 640 | fips_randtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 641 | fips_randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 642 | fips_randtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 643 | fips_randtest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 644 | fips_randtest.o: ../include/openssl/ui_compat.h fips_randtest.c | ||
| 645 | fips_rngvs.o: ../include/openssl/opensslconf.h fips_rngvs.c | ||
| 646 | fips_rsagtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 647 | fips_rsagtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 648 | fips_rsagtest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 649 | fips_rsagtest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
| 650 | fips_rsagtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 651 | fips_rsagtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 652 | fips_rsagtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 653 | fips_rsagtest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 654 | fips_rsagtest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
| 655 | fips_rsagtest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 656 | fips_rsagtest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 657 | fips_rsagtest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 658 | fips_rsagtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 659 | fips_rsagtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 660 | fips_rsagtest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
| 661 | fips_rsagtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 662 | fips_rsagtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 663 | fips_rsagtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 664 | fips_rsagtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 665 | fips_rsagtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 666 | fips_rsagtest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 667 | fips_rsagtest.o: ../include/openssl/x509v3.h fips_rsagtest.c | ||
| 668 | fips_rsastest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 669 | fips_rsastest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 670 | fips_rsastest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 671 | fips_rsastest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
| 672 | fips_rsastest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 673 | fips_rsastest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 674 | fips_rsastest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 675 | fips_rsastest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 676 | fips_rsastest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
| 677 | fips_rsastest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 678 | fips_rsastest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 679 | fips_rsastest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 680 | fips_rsastest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 681 | fips_rsastest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 682 | fips_rsastest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
| 683 | fips_rsastest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 684 | fips_rsastest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 685 | fips_rsastest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 686 | fips_rsastest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 687 | fips_rsastest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 688 | fips_rsastest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 689 | fips_rsastest.o: ../include/openssl/x509v3.h fips_rsastest.c | ||
| 690 | fips_rsavtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 691 | fips_rsavtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 692 | fips_rsavtest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 693 | fips_rsavtest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
| 694 | fips_rsavtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 695 | fips_rsavtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 696 | fips_rsavtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 697 | fips_rsavtest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 698 | fips_rsavtest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
| 699 | fips_rsavtest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 700 | fips_rsavtest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 701 | fips_rsavtest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 702 | fips_rsavtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 703 | fips_rsavtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 704 | fips_rsavtest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
| 705 | fips_rsavtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 706 | fips_rsavtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 707 | fips_rsavtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 708 | fips_rsavtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 709 | fips_rsavtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 710 | fips_rsavtest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 711 | fips_rsavtest.o: ../include/openssl/x509v3.h fips_rsavtest.c | ||
| 712 | fips_shatest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 713 | fips_shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 714 | fips_shatest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 715 | fips_shatest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
| 716 | fips_shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 717 | fips_shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 718 | fips_shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 719 | fips_shatest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 720 | fips_shatest.o: ../include/openssl/idea.h ../include/openssl/lhash.h | ||
| 721 | fips_shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 722 | fips_shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 723 | fips_shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 724 | fips_shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 725 | fips_shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 726 | fips_shatest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 727 | fips_shatest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 728 | fips_shatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 729 | fips_shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 730 | fips_shatest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 731 | fips_shatest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 732 | fips_shatest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | ||
| 733 | fips_shatest.o: fips_shatest.c | ||
| 734 | fips_test_suite.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 735 | fips_test_suite.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 736 | fips_test_suite.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 737 | fips_test_suite.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 738 | fips_test_suite.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 739 | fips_test_suite.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 740 | fips_test_suite.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 741 | fips_test_suite.o: ../include/openssl/fips.h ../include/openssl/fips_sha.h | ||
| 742 | fips_test_suite.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
| 743 | fips_test_suite.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 744 | fips_test_suite.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 745 | fips_test_suite.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 746 | fips_test_suite.o: ../include/openssl/objects.h | ||
| 747 | fips_test_suite.o: ../include/openssl/opensslconf.h | ||
| 748 | fips_test_suite.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 749 | fips_test_suite.o: ../include/openssl/rand.h ../include/openssl/rc2.h | ||
| 750 | fips_test_suite.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 751 | fips_test_suite.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 752 | fips_test_suite.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 753 | fips_test_suite.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 754 | fips_test_suite.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 755 | fips_test_suite.o: fips_test_suite.c | ||
| 756 | hmactest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 757 | hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 758 | hmactest.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 759 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 760 | hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 761 | hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 762 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h | 523 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
| 763 | hmactest.o: ../include/openssl/idea.h ../include/openssl/md2.h | 524 | hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h |
| 764 | hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 765 | hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 766 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 525 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 767 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 526 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 768 | hmactest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 527 | hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 769 | hmactest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 528 | hmactest.o: ../include/openssl/symhacks.h hmactest.c |
| 770 | hmactest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 771 | hmactest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 772 | hmactest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 773 | hmactest.o: ../include/openssl/ui_compat.h hmactest.c | ||
| 774 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h | 529 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h |
| 775 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c | 530 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c |
| 776 | md2test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 531 | igetest.o: ../include/openssl/aes.h ../include/openssl/e_os2.h |
| 777 | md2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 532 | igetest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h |
| 778 | md2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | 533 | igetest.o: ../include/openssl/rand.h igetest.c |
| 779 | md2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | 534 | md2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 780 | md2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 535 | md2test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 781 | md2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 536 | md2test.o: ../include/openssl/evp.h ../include/openssl/md2.h |
| 782 | md2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 783 | md2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 784 | md2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 785 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 537 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 786 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 538 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 787 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 539 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 788 | md2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 540 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md2test.c |
| 789 | md2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 541 | md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 790 | md2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 542 | md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 791 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 543 | md4test.o: ../include/openssl/evp.h ../include/openssl/md4.h |
| 792 | md2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md2test.c | ||
| 793 | md4test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 794 | md4test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 795 | md4test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 796 | md4test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 797 | md4test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 798 | md4test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 799 | md4test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 800 | md4test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 801 | md4test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 802 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 544 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 803 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 545 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 804 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 546 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 805 | md4test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 547 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md4test.c |
| 806 | md4test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 548 | md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 807 | md4test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 549 | md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 808 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 550 | md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h |
| 809 | md4test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md4test.c | ||
| 810 | md5test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 811 | md5test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 812 | md5test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 813 | md5test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 814 | md5test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 815 | md5test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 816 | md5test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 817 | md5test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 818 | md5test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 819 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 551 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 820 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 552 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 821 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 553 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 822 | md5test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 554 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c |
| 823 | md5test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 555 | mdc2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
| 824 | md5test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 556 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
| 825 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 557 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 826 | md5test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md5test.c | 558 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 827 | mdc2test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 559 | mdc2test.o: ../include/openssl/symhacks.h mdc2test.c |
| 828 | mdc2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 829 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 830 | mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 831 | mdc2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 832 | mdc2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 833 | mdc2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 834 | mdc2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 835 | mdc2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 836 | mdc2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 837 | mdc2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 838 | mdc2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 839 | mdc2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 840 | mdc2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 841 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 842 | mdc2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 843 | mdc2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h mdc2test.c | ||
| 844 | randtest.o: ../e_os.h ../include/openssl/e_os2.h | 560 | randtest.o: ../e_os.h ../include/openssl/e_os2.h |
| 845 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h | 561 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h |
| 846 | randtest.o: ../include/openssl/rand.h randtest.c | 562 | randtest.o: ../include/openssl/rand.h randtest.c |
| 847 | rc2test.o: ../e_os.h ../include/openssl/e_os2.h | 563 | rc2test.o: ../e_os.h ../include/openssl/e_os2.h |
| 848 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c | 564 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c |
| 849 | rc4test.o: ../e_os.h ../include/openssl/e_os2.h | 565 | rc4test.o: ../e_os.h ../include/openssl/e_os2.h |
| 850 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c | 566 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h |
| 851 | rc5test.o: ../e_os.h ../include/openssl/e_os2.h | 567 | rc4test.o: ../include/openssl/sha.h rc4test.c |
| 852 | rc5test.o: ../include/openssl/opensslconf.h ../include/openssl/rc5.h rc5test.c | 568 | rc5test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
| 853 | rmdtest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 569 | rc5test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
| 854 | rmdtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 570 | rc5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 855 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/cast.h | 571 | rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 856 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 572 | rc5test.o: ../include/openssl/symhacks.h rc5test.c |
| 857 | rmdtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 573 | rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 858 | rmdtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 574 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 859 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/idea.h | 575 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
| 860 | rmdtest.o: ../include/openssl/md2.h ../include/openssl/md4.h | 576 | rmdtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 861 | rmdtest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 577 | rmdtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 862 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 578 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/safestack.h |
| 863 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 579 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h rmdtest.c |
| 864 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 865 | rmdtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 866 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 867 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 868 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 869 | rmdtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h rmdtest.c | ||
| 870 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 580 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 871 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 581 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
| 872 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 582 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| @@ -875,64 +585,39 @@ rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | |||
| 875 | rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 585 | rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
| 876 | rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 586 | rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 877 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c | 587 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c |
| 878 | sha1test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 588 | sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 879 | sha1test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 589 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 880 | sha1test.o: ../include/openssl/bn.h ../include/openssl/cast.h | 590 | sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
| 881 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/des.h | 591 | sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 882 | sha1test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 592 | sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 883 | sha1test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 884 | sha1test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 885 | sha1test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 886 | sha1test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 887 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 888 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 889 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 890 | sha1test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 891 | sha1test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 892 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 593 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 893 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 594 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c |
| 894 | sha1test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h sha1test.c | 595 | shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 895 | shatest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 596 | shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 896 | shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 597 | shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
| 897 | shatest.o: ../include/openssl/bn.h ../include/openssl/cast.h | 598 | shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 898 | shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 599 | shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 899 | shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 900 | shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 901 | shatest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 902 | shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 903 | shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 904 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 905 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 906 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 907 | shatest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 908 | shatest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 909 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 600 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 910 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 601 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c |
| 911 | shatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h shatest.c | 602 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 912 | ssltest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 913 | ssltest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 914 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 603 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 915 | ssltest.o: ../include/openssl/cast.h ../include/openssl/comp.h | 604 | ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h |
| 916 | ssltest.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 605 | ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
| 917 | ssltest.o: ../include/openssl/des.h ../include/openssl/des_old.h | 606 | ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
| 918 | ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 607 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
| 919 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 608 | ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
| 920 | ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h | 609 | ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h |
| 921 | ssltest.o: ../include/openssl/fips.h ../include/openssl/idea.h | 610 | ssltest.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
| 922 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 611 | ssltest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
| 923 | ssltest.o: ../include/openssl/md2.h ../include/openssl/md4.h | 612 | ssltest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 924 | ssltest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 613 | ssltest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 925 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 614 | ssltest.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 926 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 615 | ssltest.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
| 927 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 616 | ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h |
| 928 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 617 | ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 929 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 618 | ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 930 | ssltest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 619 | ssltest.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 931 | ssltest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 620 | ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 932 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 621 | ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 933 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 622 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
| 934 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 623 | ssltest.o: ../include/openssl/x509v3.h ssltest.c |
| 935 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 936 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 937 | ssltest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 938 | ssltest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssltest.c | ||
diff --git a/src/lib/libssl/test/evptests.txt b/src/lib/libssl/test/evptests.txt index dfe91a5bc0..beb12144b6 100644 --- a/src/lib/libssl/test/evptests.txt +++ b/src/lib/libssl/test/evptests.txt | |||
| @@ -92,102 +92,7 @@ AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000 | |||
| 92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D | 92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D |
| 93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 | 93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 |
| 94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B | 94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B |
| 95 | 95 | # We don't support CFB{1,8}-AESxxx.{En,De}crypt | |
| 96 | # CFB1-AES128.Encrypt | ||
| 97 | |||
| 98 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:1 | ||
| 99 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:1 | ||
| 100 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:1 | ||
| 101 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:1 | ||
| 102 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:1 | ||
| 103 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:1 | ||
| 104 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:1 | ||
| 105 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:1 | ||
| 106 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:1 | ||
| 107 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:1 | ||
| 108 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:1 | ||
| 109 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:1 | ||
| 110 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:1 | ||
| 111 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:1 | ||
| 112 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:1 | ||
| 113 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:1 | ||
| 114 | # all of the above packed into one... | ||
| 115 | # in: 0110 1011 1100 0001 = 6bc1 | ||
| 116 | # out: 0110 1000 1011 0011 = 68b3 | ||
| 117 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:1 | ||
| 118 | |||
| 119 | # CFB1-AES128.Decrypt | ||
| 120 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:0 | ||
| 121 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:0 | ||
| 122 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:0 | ||
| 123 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:0 | ||
| 124 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:0 | ||
| 125 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:0 | ||
| 126 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:0 | ||
| 127 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:0 | ||
| 128 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:0 | ||
| 129 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:0 | ||
| 130 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:0 | ||
| 131 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:0 | ||
| 132 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:0 | ||
| 133 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:0 | ||
| 134 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:0 | ||
| 135 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:0 | ||
| 136 | # all of the above packed into one... | ||
| 137 | # in: 0110 1000 1011 0011 = 68b3 | ||
| 138 | # out: 0110 1011 1100 0001 = 6bc1 | ||
| 139 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:0 | ||
| 140 | |||
| 141 | # TODO: CFB1-AES192 and 256 | ||
| 142 | |||
| 143 | # CFB8-AES128.Encrypt | ||
| 144 | |||
| 145 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:1 | ||
| 146 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:1 | ||
| 147 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:1 | ||
| 148 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:1 | ||
| 149 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:1 | ||
| 150 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:1 | ||
| 151 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:1 | ||
| 152 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:1 | ||
| 153 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:1 | ||
| 154 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:1 | ||
| 155 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:1 | ||
| 156 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:1 | ||
| 157 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:1 | ||
| 158 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:1 | ||
| 159 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:1 | ||
| 160 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:1 | ||
| 161 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:1 | ||
| 162 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:1 | ||
| 163 | # all of the above packed into one | ||
| 164 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:1 | ||
| 165 | |||
| 166 | # CFB8-AES128.Decrypt | ||
| 167 | |||
| 168 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:0 | ||
| 169 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:0 | ||
| 170 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:0 | ||
| 171 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:0 | ||
| 172 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:0 | ||
| 173 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:0 | ||
| 174 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:0 | ||
| 175 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:0 | ||
| 176 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:0 | ||
| 177 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:0 | ||
| 178 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:0 | ||
| 179 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:0 | ||
| 180 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:0 | ||
| 181 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:0 | ||
| 182 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:0 | ||
| 183 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:0 | ||
| 184 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:0 | ||
| 185 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:0 | ||
| 186 | # all of the above packed into one | ||
| 187 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:0 | ||
| 188 | |||
| 189 | # TODO: 192 and 256 bit keys | ||
| 190 | |||
| 191 | # For all CFB128 encrypts and decrypts, the transformed sequence is | 96 | # For all CFB128 encrypts and decrypts, the transformed sequence is |
| 192 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec | 97 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec |
| 193 | # CFB128-AES128.Encrypt | 98 | # CFB128-AES128.Encrypt |
| @@ -269,16 +174,6 @@ DESX-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363 | |||
| 269 | # DES EDE3 CBC tests (from destest) | 174 | # DES EDE3 CBC tests (from destest) |
| 270 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 | 175 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 |
| 271 | 176 | ||
| 272 | # DES CFB1 from FIPS 81 | ||
| 273 | # plaintext: 0100 1110 0110 1111 0111 0111 = 4e6f77 | ||
| 274 | # ciphertext: 1100 1101 0001 1110 1100 1001 = cd1ec9 | ||
| 275 | |||
| 276 | DES-CFB1*8:0123456789abcdef:1234567890abcdef:4e6f77:cd1ec9 | ||
| 277 | |||
| 278 | # DES CFB8 from FIPS 81 | ||
| 279 | |||
| 280 | DES-CFB8:0123456789abcdef:1234567890abcdef:4e6f7720697320746865:f31fda07011462ee187f | ||
| 281 | |||
| 282 | # RC4 tests (from rc4test) | 177 | # RC4 tests (from rc4test) |
| 283 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 | 178 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 |
| 284 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 | 179 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 |
| @@ -286,3 +181,141 @@ RC4:00000000000000000000000000000000::0000000000000000:de188941a3375d3a | |||
| 286 | RC4:ef012345ef012345ef012345ef012345::0000000000000000000000000000000000000000:d6a141a7ec3c38dfbd615a1162e1c7ba36b67858 | 181 | RC4:ef012345ef012345ef012345ef012345::0000000000000000000000000000000000000000:d6a141a7ec3c38dfbd615a1162e1c7ba36b67858 |
| 287 | RC4:0123456789abcdef0123456789abcdef::123456789ABCDEF0123456789ABCDEF0123456789ABCDEF012345678:66a0949f8af7d6891f7f832ba833c00c892ebe30143ce28740011ecf | 182 | RC4:0123456789abcdef0123456789abcdef::123456789ABCDEF0123456789ABCDEF0123456789ABCDEF012345678:66a0949f8af7d6891f7f832ba833c00c892ebe30143ce28740011ecf |
| 288 | RC4:ef012345ef012345ef012345ef012345::00000000000000000000:d6a141a7ec3c38dfbd61 | 183 | RC4:ef012345ef012345ef012345ef012345::00000000000000000000:d6a141a7ec3c38dfbd61 |
| 184 | |||
| 185 | |||
| 186 | # Camellia tests from RFC3713 | ||
| 187 | # For all ECB encrypts and decrypts, the transformed sequence is | ||
| 188 | # CAMELLIA-bits-ECB:key::plaintext:ciphertext:encdec | ||
| 189 | CAMELLIA-128-ECB:0123456789abcdeffedcba9876543210::0123456789abcdeffedcba9876543210:67673138549669730857065648eabe43 | ||
| 190 | CAMELLIA-192-ECB:0123456789abcdeffedcba98765432100011223344556677::0123456789abcdeffedcba9876543210:b4993401b3e996f84ee5cee7d79b09b9 | ||
| 191 | CAMELLIA-256-ECB:0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff::0123456789abcdeffedcba9876543210:9acc237dff16d76c20ef7c919e3a7509 | ||
| 192 | |||
| 193 | # ECB-CAMELLIA128.Encrypt | ||
| 194 | CAMELLIA-128-ECB:000102030405060708090A0B0C0D0E0F::00112233445566778899AABBCCDDEEFF:77CF412067AF8270613529149919546F:1 | ||
| 195 | CAMELLIA-192-ECB:000102030405060708090A0B0C0D0E0F1011121314151617::00112233445566778899AABBCCDDEEFF:B22F3C36B72D31329EEE8ADDC2906C68:1 | ||
| 196 | CAMELLIA-256-ECB:000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F::00112233445566778899AABBCCDDEEFF:2EDF1F3418D53B88841FC8985FB1ECF2:1 | ||
| 197 | |||
| 198 | # ECB-CAMELLIA128.Encrypt and ECB-CAMELLIA128.Decrypt | ||
| 199 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::6BC1BEE22E409F96E93D7E117393172A:432FC5DCD628115B7C388D770B270C96 | ||
| 200 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::AE2D8A571E03AC9C9EB76FAC45AF8E51:0BE1F14023782A22E8384C5ABB7FAB2B | ||
| 201 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::30C81C46A35CE411E5FBC1191A0A52EF:A0A1ABCD1893AB6FE0FE5B65DF5F8636 | ||
| 202 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::F69F2445DF4F9B17AD2B417BE66C3710:E61925E0D5DFAA9BB29F815B3076E51A | ||
| 203 | |||
| 204 | # ECB-CAMELLIA192.Encrypt and ECB-CAMELLIA192.Decrypt | ||
| 205 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::6BC1BEE22E409F96E93D7E117393172A:CCCC6C4E138B45848514D48D0D3439D3 | ||
| 206 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::AE2D8A571E03AC9C9EB76FAC45AF8E51:5713C62C14B2EC0F8393B6AFD6F5785A | ||
| 207 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::30C81C46A35CE411E5FBC1191A0A52EF:B40ED2B60EB54D09D030CF511FEEF366 | ||
| 208 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::F69F2445DF4F9B17AD2B417BE66C3710:909DBD95799096748CB27357E73E1D26 | ||
| 209 | |||
| 210 | # ECB-CAMELLIA256.Encrypt and ECB-CAMELLIA256.Decrypt | ||
| 211 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::6BC1BEE22E409F96E93D7E117393172A:BEFD219B112FA00098919CD101C9CCFA | ||
| 212 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::AE2D8A571E03AC9C9EB76FAC45AF8E51:C91D3A8F1AEA08A9386CF4B66C0169EA | ||
| 213 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::30C81C46A35CE411E5FBC1191A0A52EF:A623D711DC5F25A51BB8A80D56397D28 | ||
| 214 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::F69F2445DF4F9B17AD2B417BE66C3710:7960109FB6DC42947FCFE59EA3C5EB6B | ||
| 215 | |||
| 216 | # For all CBC encrypts and decrypts, the transformed sequence is | ||
| 217 | # CAMELLIA-bits-CBC:key:IV/ciphertext':plaintext:ciphertext:encdec | ||
| 218 | # CBC-CAMELLIA128.Encrypt and CBC-CAMELLIA128.Decrypt | ||
| 219 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:1607CF494B36BBF00DAEB0B503C831AB | ||
| 220 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:1607CF494B36BBF00DAEB0B503C831AB:AE2D8A571E03AC9C9EB76FAC45AF8E51:A2F2CF671629EF7840C5A5DFB5074887 | ||
| 221 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:A2F2CF671629EF7840C5A5DFB5074887:30C81C46A35CE411E5FBC1191A0A52EF:0F06165008CF8B8B5A63586362543E54 | ||
| 222 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:36A84CDAFD5F9A85ADA0F0A993D6D577:F69F2445DF4F9B17AD2B417BE66C3710:74C64268CDB8B8FAF5B34E8AF3732980 | ||
| 223 | |||
| 224 | # CBC-CAMELLIA192.Encrypt and CBC-CAMELLIA192.Decrypt | ||
| 225 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:2A4830AB5AC4A1A2405955FD2195CF93 | ||
| 226 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:2A4830AB5AC4A1A2405955FD2195CF93:AE2D8A571E03AC9C9EB76FAC45AF8E51:5D5A869BD14CE54264F892A6DD2EC3D5 | ||
| 227 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:5D5A869BD14CE54264F892A6DD2EC3D5:30C81C46A35CE411E5FBC1191A0A52EF:37D359C3349836D884E310ADDF68C449 | ||
| 228 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:37D359C3349836D884E310ADDF68C449:F69F2445DF4F9B17AD2B417BE66C3710:01FAAA930B4AB9916E9668E1428C6B08 | ||
| 229 | |||
| 230 | # CBC-CAMELLIA256.Encrypt and CBC-CAMELLIA256.Decrypt | ||
| 231 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:E6CFA35FC02B134A4D2C0B6737AC3EDA | ||
| 232 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E6CFA35FC02B134A4D2C0B6737AC3EDA:AE2D8A571E03AC9C9EB76FAC45AF8E51:36CBEB73BD504B4070B1B7DE2B21EB50 | ||
| 233 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:36CBEB73BD504B4070B1B7DE2B21EB50:30C81C46A35CE411E5FBC1191A0A52EF:E31A6055297D96CA3330CDF1B1860A83 | ||
| 234 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E31A6055297D96CA3330CDF1B1860A83:F69F2445DF4F9B17AD2B417BE66C3710:5D563F6D1CCCF236051C0C5C1C58F28F | ||
| 235 | |||
| 236 | # We don't support CFB{1,8}-CAMELLIAxxx.{En,De}crypt | ||
| 237 | # For all CFB128 encrypts and decrypts, the transformed sequence is | ||
| 238 | # CAMELLIA-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec | ||
| 239 | # CFB128-CAMELLIA128.Encrypt | ||
| 240 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:1 | ||
| 241 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:14F7646187817EB586599146B82BD719:AE2D8A571E03AC9C9EB76FAC45AF8E51:A53D28BB82DF741103EA4F921A44880B:1 | ||
| 242 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:A53D28BB82DF741103EA4F921A44880B:30C81C46A35CE411E5FBC1191A0A52EF:9C2157A664626D1DEF9EA420FDE69B96:1 | ||
| 243 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:9C2157A664626D1DEF9EA420FDE69B96:F69F2445DF4F9B17AD2B417BE66C3710:742A25F0542340C7BAEF24CA8482BB09:1 | ||
| 244 | |||
| 245 | # CFB128-CAMELLIA128.Decrypt | ||
| 246 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:0 | ||
| 247 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:14F7646187817EB586599146B82BD719:AE2D8A571E03AC9C9EB76FAC45AF8E51:A53D28BB82DF741103EA4F921A44880B:0 | ||
| 248 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:A53D28BB82DF741103EA4F921A44880B:30C81C46A35CE411E5FBC1191A0A52EF:9C2157A664626D1DEF9EA420FDE69B96:0 | ||
| 249 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:9C2157A664626D1DEF9EA420FDE69B96:F69F2445DF4F9B17AD2B417BE66C3710:742A25F0542340C7BAEF24CA8482BB09:0 | ||
| 250 | |||
| 251 | # CFB128-CAMELLIA192.Encrypt | ||
| 252 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:1 | ||
| 253 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:C832BB9780677DAA82D9B6860DCD565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:86F8491627906D780C7A6D46EA331F98:1 | ||
| 254 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:86F8491627906D780C7A6D46EA331F98:30C81C46A35CE411E5FBC1191A0A52EF:69511CCE594CF710CB98BB63D7221F01:1 | ||
| 255 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:69511CCE594CF710CB98BB63D7221F01:F69F2445DF4F9B17AD2B417BE66C3710:D5B5378A3ABED55803F25565D8907B84:1 | ||
| 256 | |||
| 257 | # CFB128-CAMELLIA192.Decrypt | ||
| 258 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:0 | ||
| 259 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:C832BB9780677DAA82D9B6860DCD565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:86F8491627906D780C7A6D46EA331F98:0 | ||
| 260 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:86F8491627906D780C7A6D46EA331F98:30C81C46A35CE411E5FBC1191A0A52EF:69511CCE594CF710CB98BB63D7221F01:0 | ||
| 261 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:69511CCE594CF710CB98BB63D7221F01:F69F2445DF4F9B17AD2B417BE66C3710:D5B5378A3ABED55803F25565D8907B84:0 | ||
| 262 | |||
| 263 | # CFB128-CAMELLIA256.Encrypt | ||
| 264 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:1 | ||
| 265 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:CF6107BB0CEA7D7FB1BD31F5E7B06C93:AE2D8A571E03AC9C9EB76FAC45AF8E51:89BEDB4CCDD864EA11BA4CBE849B5E2B:1 | ||
| 266 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:89BEDB4CCDD864EA11BA4CBE849B5E2B:30C81C46A35CE411E5FBC1191A0A52EF:555FC3F34BDD2D54C62D9E3BF338C1C4:1 | ||
| 267 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:555FC3F34BDD2D54C62D9E3BF338C1C4:F69F2445DF4F9B17AD2B417BE66C3710:5953ADCE14DB8C7F39F1BD39F359BFFA:1 | ||
| 268 | |||
| 269 | # CFB128-CAMELLIA256.Decrypt | ||
| 270 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:0 | ||
| 271 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:CF6107BB0CEA7D7FB1BD31F5E7B06C93:AE2D8A571E03AC9C9EB76FAC45AF8E51:89BEDB4CCDD864EA11BA4CBE849B5E2B:0 | ||
| 272 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:89BEDB4CCDD864EA11BA4CBE849B5E2B:30C81C46A35CE411E5FBC1191A0A52EF:555FC3F34BDD2D54C62D9E3BF338C1C4:0 | ||
| 273 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:555FC3F34BDD2D54C62D9E3BF338C1C4:F69F2445DF4F9B17AD2B417BE66C3710:5953ADCE14DB8C7F39F1BD39F359BFFA:0 | ||
| 274 | |||
| 275 | # For all OFB encrypts and decrypts, the transformed sequence is | ||
| 276 | # CAMELLIA-bits-OFB:key:IV/output':plaintext:ciphertext:encdec | ||
| 277 | # OFB-CAMELLIA128.Encrypt | ||
| 278 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:1 | ||
| 279 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:50FE67CC996D32B6DA0937E99BAFEC60:AE2D8A571E03AC9C9EB76FAC45AF8E51:25623DB569CA51E01482649977E28D84:1 | ||
| 280 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:D9A4DADA0892239F6B8B3D7680E15674:30C81C46A35CE411E5FBC1191A0A52EF:C776634A60729DC657D12B9FCA801E98:1 | ||
| 281 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:A78819583F0308E7A6BF36B1386ABF23:F69F2445DF4F9B17AD2B417BE66C3710:D776379BE0E50825E681DA1A4C980E8E:1 | ||
| 282 | |||
| 283 | # OFB-CAMELLIA128.Decrypt | ||
| 284 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:0 | ||
| 285 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:50FE67CC996D32B6DA0937E99BAFEC60:AE2D8A571E03AC9C9EB76FAC45AF8E51:25623DB569CA51E01482649977E28D84:0 | ||
| 286 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:D9A4DADA0892239F6B8B3D7680E15674:30C81C46A35CE411E5FBC1191A0A52EF:C776634A60729DC657D12B9FCA801E98:0 | ||
| 287 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:A78819583F0308E7A6BF36B1386ABF23:F69F2445DF4F9B17AD2B417BE66C3710:D776379BE0E50825E681DA1A4C980E8E:0 | ||
| 288 | |||
| 289 | # OFB-CAMELLIA192.Encrypt | ||
| 290 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:1 | ||
| 291 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:A609B38DF3B1133DDDFF2718BA09565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:8ECEB7D0350D72C7F78562AEBDF99339:1 | ||
| 292 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:52EF01DA52602FE0975F78AC84BF8A50:30C81C46A35CE411E5FBC1191A0A52EF:BDD62DBBB9700846C53B507F544696F0:1 | ||
| 293 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:BD5286AC63AABD7EB067AC54B553F71D:F69F2445DF4F9B17AD2B417BE66C3710:E28014E046B802F385C4C2E13EAD4A72:1 | ||
| 294 | |||
| 295 | # OFB-CAMELLIA192.Decrypt | ||
| 296 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:0 | ||
| 297 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:A609B38DF3B1133DDDFF2718BA09565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:8ECEB7D0350D72C7F78562AEBDF99339:0 | ||
| 298 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:52EF01DA52602FE0975F78AC84BF8A50:30C81C46A35CE411E5FBC1191A0A52EF:BDD62DBBB9700846C53B507F544696F0:0 | ||
| 299 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:BD5286AC63AABD7EB067AC54B553F71D:F69F2445DF4F9B17AD2B417BE66C3710:E28014E046B802F385C4C2E13EAD4A72:0 | ||
| 300 | |||
| 301 | # OFB-CAMELLIA256.Encrypt | ||
| 302 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:1 | ||
| 303 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:B7BF3A5DF43989DD97F0FA97EBCE2F4A:AE2D8A571E03AC9C9EB76FAC45AF8E51:127AD97E8E3994E4820027D7BA109368:1 | ||
| 304 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E1C656305ED1A7A6563805746FE03EDC:30C81C46A35CE411E5FBC1191A0A52EF:6BFF6265A6A6B7A535BC65A80B17214E:1 | ||
| 305 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:41635BE625B48AFC1666DD42A09D96E7:F69F2445DF4F9B17AD2B417BE66C3710:0A4A0404E26AA78A27CB271E8BF3CF20:1 | ||
| 306 | |||
| 307 | # OFB-CAMELLIA256.Decrypt | ||
| 308 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:0 | ||
| 309 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:B7BF3A5DF43989DD97F0FA97EBCE2F4A:AE2D8A571E03AC9C9EB76FAC45AF8E51:127AD97E8E3994E4820027D7BA109368:0 | ||
| 310 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E1C656305ED1A7A6563805746FE03EDC:30C81C46A35CE411E5FBC1191A0A52EF:6BFF6265A6A6B7A535BC65A80B17214E:0 | ||
| 311 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:41635BE625B48AFC1666DD42A09D96E7:F69F2445DF4F9B17AD2B417BE66C3710:0A4A0404E26AA78A27CB271E8BF3CF20:0 | ||
| 312 | |||
| 313 | # SEED test vectors from RFC4269 | ||
| 314 | SEED-ECB:00000000000000000000000000000000::000102030405060708090A0B0C0D0E0F:5EBAC6E0054E166819AFF1CC6D346CDB:0 | ||
| 315 | SEED-ECB:000102030405060708090A0B0C0D0E0F::00000000000000000000000000000000:C11F22F20140505084483597E4370F43:0 | ||
| 316 | SEED-ECB:4706480851E61BE85D74BFB3FD956185::83A2F8A288641FB9A4E9A5CC2F131C7D:EE54D13EBCAE706D226BC3142CD40D4A:0 | ||
| 317 | SEED-ECB:28DBC3BC49FFD87DCFA509B11D422BE7::B41E6BE2EBA84A148E2EED84593C5EC7:9B9B7BFCD1813CB95D0B3618F40F5122:0 | ||
| 318 | SEED-ECB:00000000000000000000000000000000::000102030405060708090A0B0C0D0E0F:5EBAC6E0054E166819AFF1CC6D346CDB:1 | ||
| 319 | SEED-ECB:000102030405060708090A0B0C0D0E0F::00000000000000000000000000000000:C11F22F20140505084483597E4370F43:1 | ||
| 320 | SEED-ECB:4706480851E61BE85D74BFB3FD956185::83A2F8A288641FB9A4E9A5CC2F131C7D:EE54D13EBCAE706D226BC3142CD40D4A:1 | ||
| 321 | SEED-ECB:28DBC3BC49FFD87DCFA509B11D422BE7::B41E6BE2EBA84A148E2EED84593C5EC7:9B9B7BFCD1813CB95D0B3618F40F5122:1 | ||
diff --git a/src/lib/libssl/test/maketests.com b/src/lib/libssl/test/maketests.com index 94621a655b..14cbf06088 100644 --- a/src/lib/libssl/test/maketests.com +++ b/src/lib/libssl/test/maketests.com | |||
| @@ -127,9 +127,11 @@ $ GOSUB CHECK_OPT_FILE | |||
| 127 | $! | 127 | $! |
| 128 | $! Define The TEST Files. | 128 | $! Define The TEST Files. |
| 129 | $! | 129 | $! |
| 130 | $ TEST_FILES = "BNTEST,ECTEST,IDEATEST,MD2TEST,MD4TEST,MD5TEST,HMACTEST,"+ - | 130 | $ TEST_FILES = "BNTEST,ECTEST,ECDSATEST,ECDHTEST,IDEATEST,"+ - |
| 131 | "MD2TEST,MD4TEST,MD5TEST,HMACTEST,"+ - | ||
| 131 | "RC2TEST,RC4TEST,RC5TEST,"+ - | 132 | "RC2TEST,RC4TEST,RC5TEST,"+ - |
| 132 | "DESTEST,SHATEST,SHA1TEST,MDC2TEST,RMDTEST,"+ - | 133 | "DESTEST,SHATEST,SHA1TEST,SHA256T,SHA512T,"+ - |
| 134 | "MDC2TEST,RMDTEST,"+ - | ||
| 133 | "RANDTEST,DHTEST,ENGINETEST,"+ - | 135 | "RANDTEST,DHTEST,ENGINETEST,"+ - |
| 134 | "BFTEST,CASTTEST,SSLTEST,EXPTEST,DSATEST,RSA_TEST,"+ - | 136 | "BFTEST,CASTTEST,SSLTEST,EXPTEST,DSATEST,RSA_TEST,"+ - |
| 135 | "EVP_TEST" | 137 | "EVP_TEST" |
diff --git a/src/lib/libssl/test/tests.com b/src/lib/libssl/test/tests.com index 07a3c7f16d..056082e7fe 100644 --- a/src/lib/libssl/test/tests.com +++ b/src/lib/libssl/test/tests.com | |||
| @@ -22,14 +22,17 @@ $ tests := - | |||
| 22 | test_des,test_idea,test_sha,test_md4,test_md5,test_hmac,- | 22 | test_des,test_idea,test_sha,test_md4,test_md5,test_hmac,- |
| 23 | test_md2,test_mdc2,- | 23 | test_md2,test_mdc2,- |
| 24 | test_rmd,test_rc2,test_rc4,test_rc5,test_bf,test_cast,test_rd,- | 24 | test_rmd,test_rc2,test_rc4,test_rc5,test_bf,test_cast,test_rd,- |
| 25 | test_rand,test_bn,test_ec,test_enc,test_x509,test_rsa,test_crl,test_sid,- | 25 | test_rand,test_bn,test_ec,test_ecdsa,test_ecdh,- |
| 26 | test_enc,test_x509,test_rsa,test_crl,test_sid,- | ||
| 26 | test_gen,test_req,test_pkcs7,test_verify,test_dh,test_dsa,- | 27 | test_gen,test_req,test_pkcs7,test_verify,test_dh,test_dsa,- |
| 27 | test_ss,test_ca,test_engine,test_ssl,test_evp | 28 | test_ss,test_ca,test_engine,test_evp,test_ssl |
| 28 | $ endif | 29 | $ endif |
| 29 | $ tests = f$edit(tests,"COLLAPSE") | 30 | $ tests = f$edit(tests,"COLLAPSE") |
| 30 | $ | 31 | $ |
| 31 | $ BNTEST := bntest | 32 | $ BNTEST := bntest |
| 32 | $ ECTEST := ectest | 33 | $ ECTEST := ectest |
| 34 | $ ECDSATEST := ecdsatest | ||
| 35 | $ ECDHTEST := ecdhtest | ||
| 33 | $ EXPTEST := exptest | 36 | $ EXPTEST := exptest |
| 34 | $ IDEATEST := ideatest | 37 | $ IDEATEST := ideatest |
| 35 | $ SHATEST := shatest | 38 | $ SHATEST := shatest |
| @@ -182,6 +185,14 @@ $ test_ec: | |||
| 182 | $ write sys$output "test elliptic curves" | 185 | $ write sys$output "test elliptic curves" |
| 183 | $ mcr 'texe_dir''ectest' | 186 | $ mcr 'texe_dir''ectest' |
| 184 | $ return | 187 | $ return |
| 188 | $ test_ecdsa: | ||
| 189 | $ write sys$output "test ecdsa" | ||
| 190 | $ mcr 'texe_dir''ecdsatest' | ||
| 191 | $ return | ||
| 192 | $ test_ecdh: | ||
| 193 | $ write sys$output "test ecdh" | ||
| 194 | $ mcr 'texe_dir''ecdhtest' | ||
| 195 | $ return | ||
| 185 | $ test_verify: | 196 | $ test_verify: |
| 186 | $ write sys$output "The following command should have some OK's and some failures" | 197 | $ write sys$output "The following command should have some OK's and some failures" |
| 187 | $ write sys$output "There are definitly a few expired certificates" | 198 | $ write sys$output "There are definitly a few expired certificates" |
