We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd58ad commit 764885aCopy full SHA for 764885a
benchmark/main.cpp
@@ -212,7 +212,12 @@ void ecp_clear_precomputed(mbedtls_ecp_group *grp)
212
#endif /* MBEDTLS_ECP_C */
213
214
static unsigned char buf[BUFSIZE];
215
-static unsigned char tmp[200];
+/*
216
+ * Buffer used to hold various data such as IV, signatures, keys, etc. ECDSA
217
+ * seems to be the benchmark that uses the most memory from this buffer as it
218
+ * is holds the output signature
219
+ */
220
+static unsigned char tmp[150];
221
/* The longest error message has 134 characters (including \0) */
222
static char err_buf[134];
223
static char title[TITLE_LEN];
0 commit comments