mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-06-29 09:13:38 +08:00
update
This commit is contained in:
266
test/Makefile
266
test/Makefile
@@ -12,6 +12,7 @@ PERL= perl
|
||||
# KRB5 stuff
|
||||
KRB5_INCLUDES=
|
||||
LIBKRB5=
|
||||
TEST= igetest.c
|
||||
|
||||
PEX_LIBS=
|
||||
EX_LIBS= #-lnsl -lsocket
|
||||
@@ -59,9 +60,15 @@ SSLTEST= ssltest
|
||||
RSATEST= rsa_test
|
||||
ENGINETEST= enginetest
|
||||
EVPTEST= evp_test
|
||||
EVPEXTRATEST=evp_extra_test
|
||||
IGETEST= igetest
|
||||
JPAKETEST= jpaketest
|
||||
SRPTEST= srptest
|
||||
V3NAMETEST= v3nametest
|
||||
ASN1TEST= asn1test
|
||||
HEARTBEATTEST= heartbeat_test
|
||||
CONSTTIMETEST= constant_time_test
|
||||
VERIFYEXTRATEST= verify_extra_test
|
||||
|
||||
TESTS= alltests
|
||||
|
||||
@@ -72,8 +79,9 @@ EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)
|
||||
$(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \
|
||||
$(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \
|
||||
$(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \
|
||||
$(EVPTEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) $(JPAKETEST)$(EXE_EXT) \
|
||||
$(ASN1TEST)$(EXE_EXT)
|
||||
$(EVPTEST)$(EXE_EXT) $(EVPEXTRATEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) $(JPAKETEST)$(EXE_EXT) $(SRPTEST)$(EXE_EXT) \
|
||||
$(ASN1TEST)$(EXE_EXT) $(V3NAMETEST)$(EXE_EXT) $(HEARTBEATTEST)$(EXE_EXT) \
|
||||
$(CONSTTIMETEST)$(EXE_EXT) $(VERIFYEXTRATEST)$(EXE_EXT)
|
||||
|
||||
# $(METHTEST)$(EXE_EXT)
|
||||
|
||||
@@ -85,7 +93,9 @@ OBJ= $(BNTEST).o $(ECTEST).o $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \
|
||||
$(MDC2TEST).o $(RMDTEST).o \
|
||||
$(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \
|
||||
$(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \
|
||||
$(EVPTEST).o $(IGETEST).o $(JPAKETEST).o $(ASN1TEST).o
|
||||
$(EVPTEST).o $(EVPEXTRATEST).o $(IGETEST).o $(JPAKETEST).o $(ASN1TEST).o $(V3NAMETEST).o \
|
||||
$(HEARTBEATTEST).o $(CONSTTIMETEST).o $(VERIFYEXTRATEST).o
|
||||
|
||||
SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \
|
||||
$(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \
|
||||
$(HMACTEST).c $(WPTEST).c \
|
||||
@@ -93,10 +103,11 @@ SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \
|
||||
$(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \
|
||||
$(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \
|
||||
$(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \
|
||||
$(EVPTEST).c $(IGETEST).c $(JPAKETEST).c $(ASN1TEST).c
|
||||
$(EVPTEST).c $(EVPEXTRATEST).c $(IGETEST).c $(JPAKETEST).c $(SRPTEST).c $(ASN1TEST).c \
|
||||
$(V3NAMETEST).c $(HEARTBEATTEST).c $(CONSTTIMETEST).c $(VERIFYEXTRATEST).c
|
||||
|
||||
EXHEADER=
|
||||
HEADER= $(EXHEADER)
|
||||
HEADER= testutil.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
@@ -135,67 +146,71 @@ alltests: \
|
||||
test_rand test_bn test_ec test_ecdsa test_ecdh \
|
||||
test_enc test_x509 test_rsa test_crl test_sid \
|
||||
test_gen test_req test_pkcs7 test_verify test_dh test_dsa \
|
||||
test_ss test_ca test_engine test_evp test_ssl test_tsa test_ige \
|
||||
test_jpake test_cms
|
||||
test_ss test_ca test_engine test_evp test_evp_extra test_ssl test_tsa test_ige \
|
||||
test_jpake test_srp test_cms test_ocsp test_v3name test_heartbeat \
|
||||
test_constant_time test_verify_extra
|
||||
|
||||
test_evp:
|
||||
test_evp: $(EVPTEST)$(EXE_EXT) evptests.txt
|
||||
../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt
|
||||
|
||||
test_des:
|
||||
test_evp_extra: $(EVPEXTRATEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(EVPEXTRATEST)
|
||||
|
||||
test_des: $(DESTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(DESTEST)
|
||||
|
||||
test_idea:
|
||||
test_idea: $(IDEATEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(IDEATEST)
|
||||
|
||||
test_sha:
|
||||
test_sha: $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(SHATEST)
|
||||
../util/shlib_wrap.sh ./$(SHA1TEST)
|
||||
../util/shlib_wrap.sh ./$(SHA256TEST)
|
||||
../util/shlib_wrap.sh ./$(SHA512TEST)
|
||||
|
||||
test_mdc2:
|
||||
test_mdc2: $(MDC2TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(MDC2TEST)
|
||||
|
||||
test_md5:
|
||||
test_md5: $(MD5TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(MD5TEST)
|
||||
|
||||
test_md4:
|
||||
test_md4: $(MD4TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(MD4TEST)
|
||||
|
||||
test_hmac:
|
||||
test_hmac: $(HMACTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(HMACTEST)
|
||||
|
||||
test_wp:
|
||||
test_wp: $(WPTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(WPTEST)
|
||||
|
||||
test_md2:
|
||||
test_md2: $(MD2TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(MD2TEST)
|
||||
|
||||
test_rmd:
|
||||
test_rmd: $(RMDTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(RMDTEST)
|
||||
|
||||
test_bf:
|
||||
test_bf: $(BFTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(BFTEST)
|
||||
|
||||
test_cast:
|
||||
test_cast: $(CASTTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(CASTTEST)
|
||||
|
||||
test_rc2:
|
||||
test_rc2: $(RC2TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(RC2TEST)
|
||||
|
||||
test_rc4:
|
||||
test_rc4: $(RC4TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(RC4TEST)
|
||||
|
||||
test_rc5:
|
||||
test_rc5: $(RC5TEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(RC5TEST)
|
||||
|
||||
test_rand:
|
||||
test_rand: $(RANDTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(RANDTEST)
|
||||
|
||||
test_enc:
|
||||
test_enc: ../apps/openssl$(EXE_EXT) testenc
|
||||
@sh ./testenc
|
||||
|
||||
test_x509:
|
||||
test_x509: ../apps/openssl$(EXE_EXT) tx509 testx509.pem v3-cert1.pem v3-cert2.pem
|
||||
echo test normal x509v1 certificate
|
||||
sh ./tx509 2>/dev/null
|
||||
echo test first x509v3 certificate
|
||||
@@ -203,25 +218,25 @@ test_x509:
|
||||
echo test second x509v3 certificate
|
||||
sh ./tx509 v3-cert2.pem 2>/dev/null
|
||||
|
||||
test_rsa: $(RSATEST)$(EXE_EXT)
|
||||
test_rsa: $(RSATEST)$(EXE_EXT) ../apps/openssl$(EXE_EXT) trsa testrsa.pem
|
||||
@sh ./trsa 2>/dev/null
|
||||
../util/shlib_wrap.sh ./$(RSATEST)
|
||||
|
||||
test_crl:
|
||||
test_crl: ../apps/openssl$(EXE_EXT) tcrl testcrl.pem
|
||||
@sh ./tcrl 2>/dev/null
|
||||
|
||||
test_sid:
|
||||
test_sid: ../apps/openssl$(EXE_EXT) tsid testsid.pem
|
||||
@sh ./tsid 2>/dev/null
|
||||
|
||||
test_req:
|
||||
test_req: ../apps/openssl$(EXE_EXT) treq testreq.pem testreq2.pem
|
||||
@sh ./treq 2>/dev/null
|
||||
@sh ./treq testreq2.pem 2>/dev/null
|
||||
|
||||
test_pkcs7:
|
||||
test_pkcs7: ../apps/openssl$(EXE_EXT) tpkcs7 tpkcs7d testp7.pem pkcs7-1.pem
|
||||
@sh ./tpkcs7 2>/dev/null
|
||||
@sh ./tpkcs7d 2>/dev/null
|
||||
|
||||
test_bn:
|
||||
test_bn: $(BNTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) bctest
|
||||
@echo starting big number library test, could take a while...
|
||||
@../util/shlib_wrap.sh ./$(BNTEST) >tmp.bntest
|
||||
@echo quit >>tmp.bntest
|
||||
@@ -230,56 +245,61 @@ test_bn:
|
||||
@echo 'test a^b%c implementations'
|
||||
../util/shlib_wrap.sh ./$(EXPTEST)
|
||||
|
||||
test_ec:
|
||||
test_ec: $(ECTEST)$(EXE_EXT)
|
||||
@echo 'test elliptic curves'
|
||||
../util/shlib_wrap.sh ./$(ECTEST)
|
||||
|
||||
test_ecdsa:
|
||||
test_ecdsa: $(ECDSATEST)$(EXE_EXT)
|
||||
@echo 'test ecdsa'
|
||||
../util/shlib_wrap.sh ./$(ECDSATEST)
|
||||
|
||||
test_ecdh:
|
||||
test_ecdh: $(ECDHTEST)$(EXE_EXT)
|
||||
@echo 'test ecdh'
|
||||
../util/shlib_wrap.sh ./$(ECDHTEST)
|
||||
|
||||
test_verify:
|
||||
test_verify: ../apps/openssl$(EXE_EXT)
|
||||
@echo "The following command should have some OK's and some failures"
|
||||
@echo "There are definitly a few expired certificates"
|
||||
../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem
|
||||
../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs/demo ../certs/demo/*.pem
|
||||
|
||||
test_dh:
|
||||
test_dh: $(DHTEST)$(EXE_EXT)
|
||||
@echo "Generate a set of DH parameters"
|
||||
../util/shlib_wrap.sh ./$(DHTEST)
|
||||
|
||||
test_dsa:
|
||||
test_dsa: $(DSATEST)$(EXE_EXT)
|
||||
@echo "Generate a set of DSA parameters"
|
||||
../util/shlib_wrap.sh ./$(DSATEST)
|
||||
../util/shlib_wrap.sh ./$(DSATEST) -app2_1
|
||||
|
||||
test_gen:
|
||||
test_gen testreq.pem: ../apps/openssl$(EXE_EXT) testgen test.cnf
|
||||
@echo "Generate and verify a certificate request"
|
||||
@sh ./testgen
|
||||
|
||||
test_ss keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
|
||||
intP1.ss intP2.ss: testss
|
||||
intP1.ss intP2.ss: testss CAss.cnf Uss.cnf P1ss.cnf P2ss.cnf \
|
||||
../apps/openssl$(EXE_EXT)
|
||||
@echo "Generate and certify a test certificate"
|
||||
@sh ./testss
|
||||
@cat certCA.ss certU.ss > intP1.ss
|
||||
@cat certCA.ss certU.ss certP1.ss > intP2.ss
|
||||
|
||||
test_engine:
|
||||
test_engine: $(ENGINETEST)$(EXE_EXT)
|
||||
@echo "Manipulate the ENGINE structures"
|
||||
../util/shlib_wrap.sh ./$(ENGINETEST)
|
||||
|
||||
test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
|
||||
intP1.ss intP2.ss
|
||||
intP1.ss intP2.ss $(SSLTEST)$(EXE_EXT) testssl testsslproxy \
|
||||
../apps/server2.pem serverinfo.pem
|
||||
@echo "test SSL protocol"
|
||||
@if [ -n "$(FIPSCANLIB)" ]; then \
|
||||
sh ./testfipsssl keyU.ss certU.ss certCA.ss; \
|
||||
fi
|
||||
../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist
|
||||
@sh ./testssl keyU.ss certU.ss certCA.ss
|
||||
@sh ./testsslproxy keyP1.ss certP1.ss intP1.ss
|
||||
@sh ./testsslproxy keyP2.ss certP2.ss intP2.ss
|
||||
|
||||
test_ca:
|
||||
test_ca: ../apps/openssl$(EXE_EXT) testca CAss.cnf Uss.cnf
|
||||
@if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
|
||||
echo "skipping CA.sh test -- requires RSA"; \
|
||||
else \
|
||||
@@ -291,7 +311,7 @@ test_aes: #$(AESTEST)
|
||||
# @echo "test Rijndael"
|
||||
# ../util/shlib_wrap.sh ./$(AESTEST)
|
||||
|
||||
test_tsa:
|
||||
test_tsa: ../apps/openssl$(EXE_EXT) testtsa CAtsa.cnf ../util/shlib_wrap.sh
|
||||
@if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
|
||||
echo "skipping testtsa test -- requires RSA"; \
|
||||
else \
|
||||
@@ -306,19 +326,43 @@ test_jpake: $(JPAKETEST)$(EXE_EXT)
|
||||
@echo "Test JPAKE"
|
||||
../util/shlib_wrap.sh ./$(JPAKETEST)
|
||||
|
||||
test_cms:
|
||||
test_cms: ../apps/openssl$(EXE_EXT) cms-test.pl smcont.txt
|
||||
@echo "CMS consistency test"
|
||||
$(PERL) cms-test.pl
|
||||
|
||||
test_srp: $(SRPTEST)$(EXE_EXT)
|
||||
@echo "Test SRP"
|
||||
../util/shlib_wrap.sh ./srptest
|
||||
|
||||
test_ocsp: ../apps/openssl$(EXE_EXT) tocsp
|
||||
@echo "Test OCSP"
|
||||
@sh ./tocsp
|
||||
|
||||
test_v3name: $(V3NAMETEST)$(EXE_EXT)
|
||||
@echo "Test X509v3_check_*"
|
||||
../util/shlib_wrap.sh ./$(V3NAMETEST)
|
||||
|
||||
test_heartbeat: $(HEARTBEATTEST)$(EXE_EXT)
|
||||
../util/shlib_wrap.sh ./$(HEARTBEATTEST)
|
||||
|
||||
test_constant_time: $(CONSTTIMETEST)$(EXE_EXT)
|
||||
@echo "Test constant time utilites"
|
||||
../util/shlib_wrap.sh ./$(CONSTTIMETEST)
|
||||
|
||||
test_verify_extra: $(VERIFYEXTRATEST)$(EXE_EXT)
|
||||
@echo $(START) $@
|
||||
../util/shlib_wrap.sh ./$(VERIFYEXTRATEST)
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@if [ -z "$(THIS)" ]; then \
|
||||
$(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
|
||||
else \
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \
|
||||
fi
|
||||
update: local_depend
|
||||
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
||||
|
||||
depend: local_depend
|
||||
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
||||
local_depend:
|
||||
@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
@@ -330,15 +374,34 @@ clean:
|
||||
rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log dummytest
|
||||
|
||||
$(DLIBSSL):
|
||||
(cd ..; $(MAKE) DIRS=ssl all)
|
||||
(cd ..; $(MAKE) build_libssl)
|
||||
|
||||
$(DLIBCRYPTO):
|
||||
(cd ..; $(MAKE) DIRS=crypto all)
|
||||
(cd ..; $(MAKE) build_libcrypto)
|
||||
|
||||
BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
|
||||
shlib_target="$(SHLIB_TARGET)"; \
|
||||
fi; \
|
||||
LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \
|
||||
$(MAKE) -f $(TOP)/Makefile.shared -e \
|
||||
CC="$${CC}" APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
|
||||
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
|
||||
link_app.$${shlib_target}
|
||||
|
||||
FIPS_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
|
||||
shlib_target="$(SHLIB_TARGET)"; \
|
||||
fi; \
|
||||
LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \
|
||||
if [ -z "$(SHARED_LIBS)" -a -n "$(FIPSCANLIB)" ] ; then \
|
||||
FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)/bin/fipsld; export CC FIPSLD_CC; \
|
||||
fi; \
|
||||
$(MAKE) -f $(TOP)/Makefile.shared -e \
|
||||
CC="$${CC}" APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
|
||||
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
|
||||
link_app.$${shlib_target}
|
||||
|
||||
BUILD_CMD_STATIC=shlib_target=; \
|
||||
LIBRARIES="$(DLIBSSL) $(DLIBCRYPTO) $(LIBKRB5)"; \
|
||||
$(MAKE) -f $(TOP)/Makefile.shared -e \
|
||||
APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
|
||||
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
|
||||
@@ -423,7 +486,7 @@ $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO)
|
||||
@target=$(METHTEST); $(BUILD_CMD)
|
||||
|
||||
$(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO)
|
||||
@target=$(SSLTEST); $(BUILD_CMD)
|
||||
@target=$(SSLTEST); $(FIPS_BUILD_CMD)
|
||||
|
||||
$(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO)
|
||||
@target=$(ENGINETEST); $(BUILD_CMD)
|
||||
@@ -431,6 +494,9 @@ $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO)
|
||||
$(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO)
|
||||
@target=$(EVPTEST); $(BUILD_CMD)
|
||||
|
||||
$(EVPEXTRATEST)$(EXE_EXT): $(EVPEXTRATEST).o $(DLIBCRYPTO)
|
||||
@target=$(EVPEXTRATEST); $(BUILD_CMD)
|
||||
|
||||
$(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO)
|
||||
@target=$(ECDSATEST); $(BUILD_CMD)
|
||||
|
||||
@@ -446,6 +512,21 @@ $(JPAKETEST)$(EXE_EXT): $(JPAKETEST).o $(DLIBCRYPTO)
|
||||
$(ASN1TEST)$(EXE_EXT): $(ASN1TEST).o $(DLIBCRYPTO)
|
||||
@target=$(ASN1TEST); $(BUILD_CMD)
|
||||
|
||||
$(SRPTEST)$(EXE_EXT): $(SRPTEST).o $(DLIBCRYPTO)
|
||||
@target=$(SRPTEST); $(BUILD_CMD)
|
||||
|
||||
$(V3NAMETEST)$(EXE_EXT): $(V3NAMETEST).o $(DLIBCRYPTO)
|
||||
@target=$(V3NAMETEST); $(BUILD_CMD)
|
||||
|
||||
$(HEARTBEATTEST)$(EXE_EXT): $(HEARTBEATTEST).o $(DLIBCRYPTO)
|
||||
@target=$(HEARTBEATTEST); $(BUILD_CMD_STATIC)
|
||||
|
||||
$(CONSTTIMETEST)$(EXE_EXT): $(CONSTTIMETEST).o
|
||||
@target=$(CONSTTIMETEST) $(BUILD_CMD)
|
||||
|
||||
$(VERIFYEXTRATEST)$(EXE_EXT): $(VERIFYEXTRATEST).o
|
||||
@target=$(VERIFYEXTRATEST) $(BUILD_CMD)
|
||||
|
||||
#$(AESTEST).o: $(AESTEST).c
|
||||
# $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c
|
||||
|
||||
@@ -491,6 +572,9 @@ bntest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bntest.c
|
||||
casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h
|
||||
casttest.o: ../include/openssl/opensslconf.h casttest.c
|
||||
constant_time_test.o: ../crypto/constant_time_locl.h ../e_os.h
|
||||
constant_time_test.o: ../include/openssl/e_os2.h
|
||||
constant_time_test.o: ../include/openssl/opensslconf.h constant_time_test.c
|
||||
destest.o: ../include/openssl/des.h ../include/openssl/des_old.h
|
||||
destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
|
||||
destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
@@ -561,6 +645,19 @@ enginetest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
enginetest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
enginetest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
|
||||
enginetest.o: enginetest.c
|
||||
evp_extra_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
evp_extra_test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
|
||||
evp_extra_test.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
|
||||
evp_extra_test.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
|
||||
evp_extra_test.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
evp_extra_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
|
||||
evp_extra_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
evp_extra_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
evp_extra_test.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h
|
||||
evp_extra_test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
evp_extra_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
evp_extra_test.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
|
||||
evp_extra_test.o: evp_extra_test.c
|
||||
evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
evp_test.o: ../include/openssl/buffer.h ../include/openssl/conf.h
|
||||
evp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
@@ -581,6 +678,27 @@ exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
|
||||
exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
exptest.o: ../include/openssl/symhacks.h exptest.c
|
||||
heartbeat_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
heartbeat_test.o: ../include/openssl/buffer.h ../include/openssl/comp.h
|
||||
heartbeat_test.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
|
||||
heartbeat_test.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
|
||||
heartbeat_test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
|
||||
heartbeat_test.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
|
||||
heartbeat_test.o: ../include/openssl/evp.h ../include/openssl/hmac.h
|
||||
heartbeat_test.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
|
||||
heartbeat_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
heartbeat_test.o: ../include/openssl/opensslconf.h
|
||||
heartbeat_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
heartbeat_test.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
heartbeat_test.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
|
||||
heartbeat_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
heartbeat_test.o: ../include/openssl/sha.h ../include/openssl/srtp.h
|
||||
heartbeat_test.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
heartbeat_test.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
heartbeat_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
heartbeat_test.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
heartbeat_test.o: ../include/openssl/x509_vfy.h ../ssl/ssl_locl.h
|
||||
heartbeat_test.o: ../test/testutil.h heartbeat_test.c
|
||||
hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
|
||||
@@ -669,6 +787,13 @@ shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c
|
||||
srptest.o: ../include/openssl/bio.h ../include/openssl/bn.h
|
||||
srptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
srptest.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
srptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
srptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
|
||||
srptest.o: ../include/openssl/safestack.h ../include/openssl/srp.h
|
||||
srptest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h srptest.c
|
||||
ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
|
||||
ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h
|
||||
@@ -685,12 +810,41 @@ ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
|
||||
ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
|
||||
ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssltest.o: ../include/openssl/sha.h ../include/openssl/srp.h
|
||||
ssltest.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
|
||||
ssltest.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
|
||||
ssltest.o: ../include/openssl/x509v3.h ssltest.c
|
||||
v3nametest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
v3nametest.o: ../include/openssl/buffer.h ../include/openssl/conf.h
|
||||
v3nametest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
v3nametest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
|
||||
v3nametest.o: ../include/openssl/ecdsa.h ../include/openssl/evp.h
|
||||
v3nametest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
|
||||
v3nametest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
v3nametest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
v3nametest.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
|
||||
v3nametest.o: ../include/openssl/sha.h ../include/openssl/stack.h
|
||||
v3nametest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
|
||||
v3nametest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h
|
||||
v3nametest.o: v3nametest.c
|
||||
verify_extra_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
verify_extra_test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
|
||||
verify_extra_test.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
|
||||
verify_extra_test.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
|
||||
verify_extra_test.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
verify_extra_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
|
||||
verify_extra_test.o: ../include/openssl/objects.h
|
||||
verify_extra_test.o: ../include/openssl/opensslconf.h
|
||||
verify_extra_test.o: ../include/openssl/opensslv.h
|
||||
verify_extra_test.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
|
||||
verify_extra_test.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
verify_extra_test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
verify_extra_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
verify_extra_test.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
|
||||
verify_extra_test.o: verify_extra_test.c
|
||||
wp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
wp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
wp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
|
||||
Reference in New Issue
Block a user