Manuel Pégourié-Gonnard
Manuel Pégourié-Gonnard
The EC J-PAKE module uses MD in order to compute a hash at various points. This doesn't work when hashes are only provided by drivers; this is task is to...
Add a consolidated ChangeLog entry for all "driver-only" work that has been merged in time for this release. Also update any documentation that might need updating, in particular review `docs/use-psa-crypto.md`...
RSA PKCS#1 v2.1 (PSS, OAEP) computes hashes internal as part of its padding schemes. Currently this is done using the MD layer, which doesn't work in builds where hash algorithms...
TLS 1.3 unconditionally uses PSA Crypto for all of its crypto computations, except the ones where the code is shared with TLS 1.2 (running handshake hash, record encryption/decryption) where it...
This is a follow-up to #6128. After having TLS 1.2 build and `test_suite_ssl` pass in a build with driver-only hashes, we want the rest of the TLS 1.2 tests to...
This is a follow-up to #6128. After having TLS 1.2 build and `test_suite_ssl` pass in a build with driver-only hashes, we want the rest of the TLS 1.2 tests to...
## Description Test acceleration of all ciphers and AEADs ## Status **IN DEVELOPMENT** - pushed only for discussion ## Requires Backporting Perhaps - possible test gap ## Requires Changelog Perhaps,...
Fixes https://github.com/Mbed-TLS/mbedtls/issues/5277 - going with option 2 as it's such a small difference with option 1.
**Context:** [RFC 8236](https://datatracker.ietf.org/doc/html/rfc8236#section-3.2) says the shared secret K (an EC point in case of EC J-PAKE) needs to be passed to a KDF chosen by the application, which is reflected...
Add missing `const` in function signatures. This issue is only about simple cases where the `const` was just forgotten and no code change is needed in order to add it....