Files
xiuos/APP_Framework/Framework/security/Kconfig
Ruoqing He 7079f86acb Add SHA1, SHA256, AES CBC and etc. tests for MBed-TLS, modified kconfig to enable selection of
whether to compile test code when build for board ok1052-c.
2022-10-04 03:37:35 -07:00

35 lines
580 B
Plaintext
Executable File

menu "Security"
menuconfig CRYPTO
bool "using crypto"
default n
select TRANSFORM_LAYER_ATTRIUBUTE
if CRYPTO
menuconfig CRYPTO_SM3
bool "using sm3"
default n
menuconfig CRYPTO_SM4
bool "using sm4"
default n
menuconfig CRYPTO_SM9
select CRYPTO_SM3
select CRYPTO_SM4
bool "using sm9"
default n
endif
menuconfig MBEDTLS
bool "using mbedtls"
default n
select MBEDTLS_ENABLE
if MBEDTLS
menuconfig ENABLE_MBEDTLS_TEST
bool "enable test"
default n
endif
endmenu