From d9854684b9e9f8ab0daa7d78aa008fbbd844239f Mon Sep 17 00:00:00 2001 From: Daniel Otte Date: Mon, 7 Sep 2020 13:07:14 +0200 Subject: [PATCH] adjusting comment on sliding window memory usage. The comment now uses '**' as exponentiation operator. Signed-off-by: Daniel Otte --- include/mbedtls/bignum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mbedtls/bignum.h b/include/mbedtls/bignum.h index 26f76f7c4..a2fa3bdaf 100644 --- a/include/mbedtls/bignum.h +++ b/include/mbedtls/bignum.h @@ -83,7 +83,7 @@ * Maximum window size used for modular exponentiation. Default: 6 * Minimum value: 1. Maximum value: 6. * - * Result is an array of ( 2 << MBEDTLS_MPI_WINDOW_SIZE ) MPIs used + * Result is an array of ( 2 ** MBEDTLS_MPI_WINDOW_SIZE ) MPIs used * for the sliding window calculation. (So 64 by default) * * Reduction in size, reduces speed.