Skip to content

Commit

Permalink
crypto: optimize crypto algorithms
Browse files Browse the repository at this point in the history
KRKNWK-17003
Signed-off-by: Robert Gałat <[email protected]>
  • Loading branch information
RobertGalatNordic committed Jun 14, 2023
1 parent 8b27fcb commit caf16fc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Kconfig.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,16 @@ config SIDEWALK_CRYPTO
imply PSA_WANT_ALG_CTR
imply PSA_WANT_ALG_GCM
imply PSA_WANT_ALG_CMAC
imply PSA_WANT_ALG_ECB_NO_PADDING
imply PSA_WANT_ALG_SHA_1
imply PSA_WANT_ALG_SHA_256
imply PSA_WANT_ALG_SHA_512
imply PSA_WANT_ALG_ECDH
imply PSA_WANT_ALG_ECDSA
imply PSA_WANT_ALG_DETERMINISTIC_ECDSA
imply PSA_WANT_ALG_STREAM_CIPHER
imply PSA_WANT_ALG_CCM
imply PSA_WANT_ALG_GCM
imply PSA_WANT_ECC_SECP_R1_256
imply PSA_WANT_ECC_MONTGOMERY_255
imply PSA_WANT_ECC_TWISTED_EDWARDS_255
Expand All @@ -67,6 +72,21 @@ config SIDEWALK_CRYPTO
help
Sidewalk security module

if SIDEWALK_CRYPTO
config PSA_WANT_ALG_CHACHA20_POLY1305
default n
config PSA_WANT_ALG_SHA_224
default n
config PSA_WANT_ALG_SHA_384
default n
config PSA_WANT_ALG_CBC_NO_PADDING
default n
config PSA_WANT_ALG_CBC_PKCS7
default n
config PSA_WANT_ALG_HKDF
default n
endif #SIDEWALK_CRYPTO

config SIDEWALK_LOG
bool
default SIDEWALK
Expand Down

0 comments on commit caf16fc

Please sign in to comment.