pkg/tinydtls: default to sha1prng for the PRNG implementation

This commit is contained in:
Benjamin Valentin 2020-07-07 15:51:15 +02:00
parent 6dcb25de15
commit 7d54fe1662

View File

@ -6,5 +6,9 @@ USEMODULE += random
USEMODULE += tinydtls_aes USEMODULE += tinydtls_aes
USEMODULE += tinydtls_ecc USEMODULE += tinydtls_ecc
# tinydtls needs cryptographically secure randomness
# TODO: restore configurability, e.g. allow to use HWRNG instead if available
USEMODULE += prng_sha1prng
# TinyDTLS only has support for 32-bit architectures ATM # TinyDTLS only has support for 32-bit architectures ATM
FEATURES_REQUIRED += arch_32bit FEATURES_REQUIRED += arch_32bit