You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[crypto] Initial crypto backend using PSA crypto API (project-chip#23193)
* [crypto] Add initial implementation for PSA crypto API
Implement most cryptographic operations using PSA crypto
API. Make it unit-testable using the following manual
steps (until we all agree to update mbedTLS to 3.X):
1. Update mbedTLS submodule to 3.2.1 and update mbedtls.gni
accordingly.
2. Use scripts/generate_driver_wrappers.py to generate
psa_crypto_driver_wrappers.c and include it in mbedTLS
library build.
3. Increase CHIP_CONFIG_SHA256_CONTEXT_SIZE to 256B
4. gn gen out/ut --args='chip_crypto="psa"'
5. ninja -C out/ut tests/CHIPCryptoPALTest
6. out/ut/tests/CHIPCryptoPALTest
[crypto] Implement PBKDF2 using PSA crypto API
PBKDF2 PSA crypto API is not yet implemented in mbedTLS 3.1
nor 3.2 so for now use a handcrafted implementation using
HMAC directly.
[crypto] Implement ECDSA and ECDH using PSA crypto API
The ECDSA and ECDH operations specified by P256Keypair
and P256PublicKey classes have been implemented using
PSA crypto API provided by mbedTLS 3.X.
* Code review comments
0 commit comments