1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Merge pull request #7991 from sarveshb14/fix/psa_rsa_signature_using_large_stack

rsa_signature: Use heap memory to allocate DER encoded RSA private key
This commit is contained in:
Gilles Peskine
2023-08-16 09:23:29 +00:00
committed by GitHub
2 changed files with 14 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
Changes
* Use heap memory to allocate DER encoded RSA private key.
This reduces stack usage significantly for RSA signature
operations when MBEDTLS_PSA_CRYPTO_C is defined.