Skip to content

Commit

Permalink
xtest: add asymmetric cipher algorithm perf test
Browse files Browse the repository at this point in the history
Add perf test for DH,RSA,ECDH,ECDSA algorithm

Signed-off-by: Zexi Yu <yuzexi@hisilicon.com>
  • Loading branch information
yuzexiyzx committed Aug 29, 2023
1 parent f4dd113 commit 2be5b36
Show file tree
Hide file tree
Showing 16 changed files with 1,472 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ srcs += adbg/src/adbg_case.c \
regression_8000.c \
regression_8100.c \
hash_perf.c \
asym_cipher_perf.c \
stats.c \
xtest_helpers.c \
xtest_main.c \
Expand Down Expand Up @@ -109,6 +110,7 @@ LOCAL_C_INCLUDES += $(LOCAL_PATH)/host/xtest \
$(LOCAL_PATH)/ta/concurrent/include \
$(LOCAL_PATH)/ta/concurrent_large/include \
$(LOCAL_PATH)/ta/hash_perf/include \
$(LOCAL_PATH)/ta/asym_cipher_perf/include \
$(LOCAL_PATH)/ta/aes_perf/include \
$(LOCAL_PATH)/ta/socket/include \
$(LOCAL_PATH)/ta/sdp_basic/include \
Expand Down
1 change: 1 addition & 0 deletions host/xtest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ set (SRC
regression_8000.c
regression_8100.c
hash_perf.c
asym_cipher_perf.c
stats.c
xtest_helpers.c
xtest_main.c
Expand Down
2 changes: 2 additions & 0 deletions host/xtest/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ srcs += adbg/src/adbg_case.c \
regression_8000.c \
regression_8100.c \
hash_perf.c \
asym_cipher_perf.c \
stats.c \
xtest_helpers.c \
xtest_main.c \
Expand Down Expand Up @@ -121,6 +122,7 @@ CFLAGS += -I../../ta/storage_benchmark/include
CFLAGS += -I../../ta/concurrent/include
CFLAGS += -I../../ta/concurrent_large/include
CFLAGS += -I../../ta/hash_perf/include
CFLAGS += -I../../ta/asym_cipher_perf/include
CFLAGS += -I../../ta/aes_perf/include
CFLAGS += -I../../ta/socket/include
CFLAGS += -I../../ta/sdp_basic/include
Expand Down
Loading

0 comments on commit 2be5b36

Please sign in to comment.