summaryrefslogtreecommitdiff
path: root/drivers/auth/mbedtls/mbedtls_common.c
diff options
context:
space:
mode:
authordanh-arm <dan.handley@arm.com>2017-06-05 14:45:10 +0100
committerGitHub <noreply@github.com>2017-06-05 14:45:10 +0100
commit47fd7cb0ac6ece95f2107d6949c8f53fd46e79f0 (patch)
tree3667f11a0d0c0b79bc242f42245da05c5e301891 /drivers/auth/mbedtls/mbedtls_common.c
parentb32e6b2b35cef4caa7625db6789ecf2d10a5ec8f (diff)
parent1f33ad4e9f86f2d72eb9640a834708e1a13496db (diff)
Merge pull request #964 from soby-mathew/sm/rsapss_sup
Add support for RSASSAPSS algorithm
Diffstat (limited to 'drivers/auth/mbedtls/mbedtls_common.c')
-rw-r--r--drivers/auth/mbedtls/mbedtls_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/auth/mbedtls/mbedtls_common.c b/drivers/auth/mbedtls/mbedtls_common.c
index 336e44be..3799d418 100644
--- a/drivers/auth/mbedtls/mbedtls_common.c
+++ b/drivers/auth/mbedtls/mbedtls_common.c
@@ -16,7 +16,7 @@
#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA)
#define MBEDTLS_HEAP_SIZE (14*1024)
#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
-#define MBEDTLS_HEAP_SIZE (6*1024)
+#define MBEDTLS_HEAP_SIZE (7*1024)
#endif
static unsigned char heap[MBEDTLS_HEAP_SIZE];