forked from wolfSSL/wolfssl
increase test buffer size to account for edge case
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user