mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* improvements for cross-platform compiling * moved tactility-core to libs/ * splitup improvements * remove git/gitmodules from freertos * better platformbetter platform checks * added build scripts * delete mbedtls * re-add mbedtls * fixes and improvements * added pc build * simplify build scripts * revert build scrpit * updated builds * fix for pc * fix for pc * fix for build
12 lines
728 B
Plaintext
12 lines
728 B
Plaintext
Features
|
|
* If a cipher or AEAD mechanism has a PSA driver, you can now build the
|
|
library without the corresponding built-in implementation. Generally
|
|
speaking that requires both the key type and algorithm to be accelerated
|
|
or they'll both be built in. However, for CCM and GCM the built-in
|
|
implementation is able to take advantage of a driver that only
|
|
accelerates the key type (that is, the block cipher primitive). See
|
|
docs/driver-only-builds.md for full details and current limitations.
|
|
* The CTR_DRBG module will now use AES from a PSA driver if MBEDTLS_AES_C is
|
|
disabled. This requires PSA_WANT_ALG_ECB_NO_PADDING in addition to
|
|
MBEDTLS_PSA_CRYPTO_C and PSA_WANT_KEY_TYPE_AES.
|