increase test buffer size to account for edge case

This commit is contained in:
Jacob Barthelmeh
2017-10-26 16:19:56 -06:00
parent 35141c335d
commit 016f7357d2

View File

@ -7791,7 +7791,9 @@ static int test_wc_RsaKeyToDer (void)
WC_RNG rng;
byte* der;
der = (byte*)XMALLOC(610, NULL, DYNAMIC_TYPE_TMP_BUFFER);
/* (2 x 128) + 2 (possible leading 00) + (5 x 64) + 5 (possible leading 00)
+ 3 (e) + 8 (ASN tag) + 10 (ASN length) + 4 seqSz + 3 version */
der = (byte*)XMALLOC(611, NULL, DYNAMIC_TYPE_TMP_BUFFER);
if (der == NULL) {
ret = SSL_FATAL_ERROR;
}