From efd05fdebb3c21688237662b69e732ce6189a625 Mon Sep 17 00:00:00 2001 From: Aditya Patwardhan Date: Thu, 27 Oct 2022 16:51:16 +0530 Subject: [PATCH] esp32c3/esp_ds.c: Fix RSA_LEN_MAX variable --- components/esp_hw_support/port/esp32c3/esp_ds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_hw_support/port/esp32c3/esp_ds.c b/components/esp_hw_support/port/esp32c3/esp_ds.c index de1695ef2c..6f487f0de2 100644 --- a/components/esp_hw_support/port/esp32c3/esp_ds.c +++ b/components/esp_hw_support/port/esp32c3/esp_ds.c @@ -28,7 +28,7 @@ struct esp_ds_context { */ #define ESP_DS_SIGN_TASK_DELAY_MS 10 -#define RSA_LEN_MAX 127 +#define RSA_LEN_MAX 95 /* * esp_digital_signature_length_t is used in esp_ds_data_t in contrast to ets_ds_data_t, where unsigned is used.