An open source, portable, easy to use, readable and flexible TLS library, and reference implementation of the PSA Cryptography API. Releases are on a varying cadence, typically around 3 - 6 months between releases.
Define psa_crypto_init_subsystem and friends. Do a trivial implementation, where initializing any subsystem initializes all of them, i.e. as a first step we provide psa_crypto_init_subsystem() but it's equivalent to psa_crypto_init().
We'll still only support a full deinit (mbedtls_psa_crypto_free()).
Define
psa_crypto_init_subsystem
and friends. Do a trivial implementation, where initializing any subsystem initializes all of them, i.e. as a first step we providepsa_crypto_init_subsystem()
but it's equivalent topsa_crypto_init()
.We'll still only support a full deinit (
mbedtls_psa_crypto_free()
).Copy the documentation from the PSA Crypto API draft.
Prerequisite: https://github.com/Mbed-TLS/mbedtls/issues/6006