Skip to content

Commit 37b451e

Browse files
Ruby Martinrlm2002
authored andcommitted
add API unit test for XChacha20-Poly1305
Expand XChacha20-Poly1305 unit test
1 parent 62ca344 commit 37b451e

File tree

4 files changed

+310
-4
lines changed

4 files changed

+310
-4
lines changed

tests/api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31093,7 +31093,7 @@ TEST_CASE testCases[] = {
3109331093
TEST_CHACHA_DECLS,
3109431094
/* Poly1305 */
3109531095
TEST_POLY1305_DECLS,
31096-
/* Chacha20-Poly1305 */
31096+
/* Chacha20-Poly1305 and Xchacha20-Poly1305 */
3109731097
TEST_CHACHA20_POLY1305_DECLS,
3109831098
/* Camellia */
3109931099
TEST_CAMELLIA_DECLS,

tests/api/test_chacha20_poly1305.c

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,132 @@ int test_wc_ChaCha20Poly1305_aead(void)
154154
return EXPECT_RESULT();
155155
} /* END test_wc_ChaCha20Poly1305_aead */
156156

157+
/*
158+
* Testing wc_XChaCha20Poly1305_Encrypt() and wc_XChaCha20Poly1305_Decrypt()
159+
* Test vector from Draft IRTF CFRG XChaCha Appendix A.3
160+
*/
161+
int test_wc_XChaCha20Poly1305_aead(void)
162+
{
163+
EXPECT_DECLS;
164+
#if defined(HAVE_CHACHA) && defined(HAVE_POLY1305) && defined(HAVE_XCHACHA)
165+
const byte key[] = {
166+
0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
167+
0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
168+
0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
169+
0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
170+
};
171+
/* XChaCha uses a 24-byte nonce */
172+
const byte nonce[] = {
173+
0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
174+
0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
175+
0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57
176+
};
177+
const byte plaintext[] = {
178+
0x4c, 0x61, 0x64, 0x69, 0x65, 0x73, 0x20, 0x61,
179+
0x6e, 0x64, 0x20, 0x47, 0x65, 0x6e, 0x74, 0x6c,
180+
0x65, 0x6d, 0x65, 0x6e, 0x20, 0x6f, 0x66, 0x20,
181+
0x74, 0x68, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73,
182+
0x73, 0x20, 0x6f, 0x66, 0x20, 0x27, 0x39, 0x39,
183+
0x3a, 0x20, 0x49, 0x66, 0x20, 0x49, 0x20, 0x63,
184+
0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6f, 0x66, 0x66,
185+
0x65, 0x72, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6f,
186+
0x6e, 0x6c, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20,
187+
0x74, 0x69, 0x70, 0x20, 0x66, 0x6f, 0x72, 0x20,
188+
0x74, 0x68, 0x65, 0x20, 0x66, 0x75, 0x74, 0x75,
189+
0x72, 0x65, 0x2c, 0x20, 0x73, 0x75, 0x6e, 0x73,
190+
0x63, 0x72, 0x65, 0x65, 0x6e, 0x20, 0x77, 0x6f,
191+
0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x69,
192+
0x74, 0x2e
193+
};
194+
const byte aad[] = {
195+
0x50, 0x51, 0x52, 0x53, 0xc0, 0xc1, 0xc2, 0xc3,
196+
0xc4, 0xc5, 0xc6, 0xc7
197+
};
198+
/* Expected combined ciphertext + 16-byte tag */
199+
const byte expected[] = {
200+
0xbd, 0x6d, 0x17, 0x9d, 0x3e, 0x83, 0xd4, 0x3b, 0x95, 0x76, 0x57, 0x94,
201+
0x93, 0xc0, 0xe9, 0x39, 0x57, 0x2a, 0x17, 0x00, 0x25, 0x2b, 0xfa, 0xcc,
202+
0xbe, 0xd2, 0x90, 0x2c, 0x21, 0x39, 0x6c, 0xbb, 0x73, 0x1c, 0x7f, 0x1b,
203+
0x0b, 0x4a, 0xa6, 0x44, 0x0b, 0xf3, 0xa8, 0x2f, 0x4e, 0xda, 0x7e, 0x39,
204+
0xae, 0x64, 0xc6, 0x70, 0x8c, 0x54, 0xc2, 0x16, 0xcb, 0x96, 0xb7, 0x2e,
205+
0x12, 0x13, 0xb4, 0x52, 0x2f, 0x8c, 0x9b, 0xa4, 0x0d, 0xb5, 0xd9, 0x45,
206+
0xb1, 0x1b, 0x69, 0xb9, 0x82, 0xc1, 0xbb, 0x9e, 0x3f, 0x3f, 0xac, 0x2b,
207+
0xc3, 0x69, 0x48, 0x8f, 0x76, 0xb2, 0x38, 0x35, 0x65, 0xd3, 0xff, 0xf9,
208+
0x21, 0xf9, 0x66, 0x4c, 0x97, 0x63, 0x7d, 0xa9, 0x76, 0x88, 0x12, 0xf6,
209+
0x15, 0xc6, 0x8b, 0x13, 0xb5, 0x2e,
210+
/* Authentication Tag */
211+
0xc0, 0x87, 0x59, 0x24, 0xc1, 0xc7, 0x98, 0x79, 0x47, 0xde, 0xaf, 0xd8,
212+
0x78, 0x0a, 0xcf, 0x49
213+
};
214+
215+
byte out[256];
216+
byte plain_out[256];
217+
word32 outLen = sizeof(plaintext) + 16;
218+
219+
XMEMSET(out, 0, sizeof(out));
220+
XMEMSET(plain_out, 0, sizeof(plain_out));
221+
222+
/* Test Encrypt (One-shot) */
223+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(out, sizeof(out), plaintext,
224+
sizeof(plaintext), aad, sizeof(aad), nonce, sizeof(nonce),
225+
key, sizeof(key)), 0);
226+
ExpectIntEQ(XMEMCMP(out, expected, outLen), 0);
227+
228+
/* Test Decrypt (One-shot) */
229+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(plain_out, sizeof(plain_out), out,
230+
outLen, aad, sizeof(aad), nonce, sizeof(nonce),
231+
key, sizeof(key)), 0);
232+
ExpectIntEQ(XMEMCMP(plain_out, plaintext, sizeof(plaintext)), 0);
233+
234+
/* Test Encrypt bad args. */
235+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(NULL, sizeof(out), plaintext,
236+
sizeof(plaintext), aad, sizeof(aad), nonce, sizeof(nonce),
237+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
238+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(out, sizeof(out), NULL,
239+
sizeof(plaintext), aad, sizeof(aad), nonce, sizeof(nonce),
240+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
241+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(out, sizeof(out), plaintext,
242+
sizeof(plaintext), NULL, sizeof(aad), nonce, sizeof(nonce),
243+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
244+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(out, sizeof(out), plaintext,
245+
sizeof(plaintext), aad, sizeof(aad), NULL, sizeof(nonce),
246+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
247+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(out, sizeof(out), plaintext,
248+
sizeof(plaintext), aad, sizeof(aad), nonce, sizeof(nonce),
249+
NULL, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
250+
/* Wrong nonce size (12 instead of 24) */
251+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(out, sizeof(out), plaintext,
252+
sizeof(plaintext), aad, sizeof(aad), nonce, 12,
253+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
254+
/* Wrong key size */
255+
ExpectIntEQ(wc_XChaCha20Poly1305_Encrypt(out, sizeof(out), plaintext,
256+
sizeof(plaintext), aad, sizeof(aad), nonce, sizeof(nonce),
257+
key, 16), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
258+
259+
/* Test Decrypt bad args. */
260+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(NULL, sizeof(plain_out), out,
261+
outLen, aad, sizeof(aad), nonce, sizeof(nonce),
262+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
263+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(plain_out, sizeof(plain_out), NULL,
264+
outLen, aad, sizeof(aad), nonce, sizeof(nonce),
265+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
266+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(plain_out, sizeof(plain_out), out,
267+
outLen, NULL, sizeof(aad), nonce, sizeof(nonce),
268+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
269+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(plain_out, sizeof(plain_out), out,
270+
outLen, aad, sizeof(aad), NULL, sizeof(nonce),
271+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
272+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(plain_out, sizeof(plain_out), out,
273+
outLen, aad, sizeof(aad), nonce, sizeof(nonce),
274+
NULL, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
275+
/* Wrong nonce size (12 instead of 24) */
276+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(plain_out, sizeof(plain_out), out,
277+
outLen, aad, sizeof(aad), nonce, 12,
278+
key, sizeof(key)), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
279+
/* Wrong key size */
280+
ExpectIntEQ(wc_XChaCha20Poly1305_Decrypt(plain_out, sizeof(plain_out), out,
281+
outLen, aad, sizeof(aad), nonce, sizeof(nonce),
282+
key, 16), WC_NO_ERR_TRACE(BAD_FUNC_ARG));
283+
#endif
284+
return EXPECT_RESULT();
285+
} /* END test_wc_XChaCha20Poly1305_aead */

tests/api/test_chacha20_poly1305.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@
2525
#include <tests/api/api_decl.h>
2626

2727
int test_wc_ChaCha20Poly1305_aead(void);
28+
int test_wc_XChaCha20Poly1305_aead(void);
2829

29-
#define TEST_CHACHA20_POLY1305_DECLS \
30-
TEST_DECL_GROUP("chacha20-poly1305", test_wc_ChaCha20Poly1305_aead)
30+
#define TEST_CHACHA20_POLY1305_DECLS \
31+
TEST_DECL_GROUP("chacha20-poly1305", test_wc_ChaCha20Poly1305_aead), \
32+
TEST_DECL_GROUP("xchacha20-poly1305", test_wc_XChaCha20Poly1305_aead)
3133

3234
#endif /* WOLFCRYPT_TEST_CHACHA20_POLY1305_H */

wolfcrypt/test/test.c

Lines changed: 176 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19849,13 +19849,16 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t XChaCha20Poly1305_test(void) {
1984919849
#if defined(WOLFSSL_SMALL_STACK) && !defined(WOLFSSL_NO_MALLOC)
1985019850
byte *buf1 = (byte *)XMALLOC(sizeof Ciphertext + sizeof Tag, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
1985119851
byte *buf2 = (byte *)XMALLOC(sizeof Plaintext, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
19852+
ChaChaPoly_Aead *aead = (ChaChaPoly_Aead *)XMALLOC(sizeof(ChaChaPoly_Aead), HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
1985219853

1985319854
WOLFSSL_ENTER("XChaCha20Poly1305_test");
19854-
if ((buf1 == NULL) || (buf2 == NULL))
19855+
if ((buf1 == NULL) || (buf2 == NULL) || (aead == NULL))
1985519856
ERROR_OUT(WC_TEST_RET_ENC_NC, out);
1985619857
#else
1985719858
byte buf1[sizeof Ciphertext + sizeof Tag];
1985819859
byte buf2[sizeof Plaintext];
19860+
ChaChaPoly_Aead aead_buf;
19861+
ChaChaPoly_Aead *aead = &aead_buf;
1985919862
WOLFSSL_ENTER("XChaCha20Poly1305_test");
1986019863
#endif
1986119864

@@ -19886,11 +19889,183 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t XChaCha20Poly1305_test(void) {
1988619889
if (XMEMCMP(buf2, Plaintext, sizeof Plaintext))
1988719890
ERROR_OUT(WC_TEST_RET_ENC_NC, out);
1988819891

19892+
/* Test wc_XChaCha20Poly1305_Init bad parameters */
19893+
ret = wc_XChaCha20Poly1305_Init(NULL, AAD, sizeof AAD,
19894+
IV, sizeof IV,
19895+
Key, sizeof Key, 1);
19896+
if (ret != BAD_FUNC_ARG)
19897+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19898+
19899+
ret = wc_XChaCha20Poly1305_Init(aead, AAD, sizeof AAD,
19900+
NULL, sizeof IV,
19901+
Key, sizeof Key, 1);
19902+
if (ret != BAD_FUNC_ARG)
19903+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19904+
19905+
ret = wc_XChaCha20Poly1305_Init(aead, AAD, sizeof AAD,
19906+
IV, sizeof IV,
19907+
NULL, sizeof Key, 1);
19908+
if (ret != BAD_FUNC_ARG)
19909+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19910+
19911+
/* Wrong nonce size (12 instead of 24) */
19912+
ret = wc_XChaCha20Poly1305_Init(aead, AAD, sizeof AAD,
19913+
IV, CHACHA20_POLY1305_AEAD_IV_SIZE,
19914+
Key, sizeof Key, 1);
19915+
if (ret != BAD_FUNC_ARG)
19916+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19917+
19918+
/* Wrong key size (16 instead of 32) */
19919+
ret = wc_XChaCha20Poly1305_Init(aead, AAD, sizeof AAD,
19920+
IV, sizeof IV,
19921+
Key, 16, 1);
19922+
if (ret != BAD_FUNC_ARG)
19923+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19924+
19925+
/* Test wc_XChaCha20Poly1305_Encrypt bad parameters */
19926+
ret = wc_XChaCha20Poly1305_Encrypt(NULL, sizeof Ciphertext + sizeof Tag,
19927+
Plaintext, sizeof Plaintext,
19928+
AAD, sizeof AAD,
19929+
IV, sizeof IV,
19930+
Key, sizeof Key);
19931+
if (ret != BAD_FUNC_ARG)
19932+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19933+
19934+
ret = wc_XChaCha20Poly1305_Encrypt(buf1, sizeof Ciphertext + sizeof Tag,
19935+
NULL, sizeof Plaintext,
19936+
AAD, sizeof AAD,
19937+
IV, sizeof IV,
19938+
Key, sizeof Key);
19939+
if (ret != BAD_FUNC_ARG)
19940+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19941+
19942+
ret = wc_XChaCha20Poly1305_Encrypt(buf1, sizeof Ciphertext + sizeof Tag,
19943+
Plaintext, sizeof Plaintext,
19944+
NULL, sizeof AAD,
19945+
IV, sizeof IV,
19946+
Key, sizeof Key);
19947+
if (ret != BAD_FUNC_ARG)
19948+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19949+
19950+
ret = wc_XChaCha20Poly1305_Encrypt(buf1, sizeof Ciphertext + sizeof Tag,
19951+
Plaintext, sizeof Plaintext,
19952+
AAD, sizeof AAD,
19953+
NULL, sizeof IV,
19954+
Key, sizeof Key);
19955+
if (ret != BAD_FUNC_ARG)
19956+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19957+
19958+
ret = wc_XChaCha20Poly1305_Encrypt(buf1, sizeof Ciphertext + sizeof Tag,
19959+
Plaintext, sizeof Plaintext,
19960+
AAD, sizeof AAD,
19961+
IV, sizeof IV,
19962+
NULL, sizeof Key);
19963+
if (ret != BAD_FUNC_ARG)
19964+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19965+
19966+
/* Wrong nonce size (12 instead of 24) */
19967+
ret = wc_XChaCha20Poly1305_Encrypt(buf1, sizeof Ciphertext + sizeof Tag,
19968+
Plaintext, sizeof Plaintext,
19969+
AAD, sizeof AAD,
19970+
IV, CHACHA20_POLY1305_AEAD_IV_SIZE,
19971+
Key, sizeof Key);
19972+
if (ret != BAD_FUNC_ARG)
19973+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19974+
19975+
/* Wrong key size (16 instead of 32) */
19976+
ret = wc_XChaCha20Poly1305_Encrypt(buf1, sizeof Ciphertext + sizeof Tag,
19977+
Plaintext, sizeof Plaintext,
19978+
AAD, sizeof AAD,
19979+
IV, sizeof IV,
19980+
Key, 16);
19981+
if (ret != BAD_FUNC_ARG)
19982+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19983+
19984+
/* Insufficient buffer space */
19985+
ret = wc_XChaCha20Poly1305_Encrypt(buf1, sizeof Plaintext,
19986+
Plaintext, sizeof Plaintext,
19987+
AAD, sizeof AAD,
19988+
IV, sizeof IV,
19989+
Key, sizeof Key);
19990+
if (ret != BUFFER_E)
19991+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
19992+
19993+
/* Test wc_XChaCha20Poly1305_Decrypt bad parameters */
19994+
ret = wc_XChaCha20Poly1305_Decrypt(NULL, sizeof Plaintext,
19995+
buf1, sizeof Ciphertext + sizeof Tag,
19996+
AAD, sizeof AAD,
19997+
IV, sizeof IV,
19998+
Key, sizeof Key);
19999+
if (ret != BAD_FUNC_ARG)
20000+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20001+
20002+
ret = wc_XChaCha20Poly1305_Decrypt(buf2, sizeof Plaintext,
20003+
NULL, sizeof Ciphertext + sizeof Tag,
20004+
AAD, sizeof AAD,
20005+
IV, sizeof IV,
20006+
Key, sizeof Key);
20007+
if (ret != BAD_FUNC_ARG)
20008+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20009+
20010+
ret = wc_XChaCha20Poly1305_Decrypt(buf2, sizeof Plaintext,
20011+
buf1, sizeof Ciphertext + sizeof Tag,
20012+
NULL, sizeof AAD,
20013+
IV, sizeof IV,
20014+
Key, sizeof Key);
20015+
if (ret != BAD_FUNC_ARG)
20016+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20017+
20018+
ret = wc_XChaCha20Poly1305_Decrypt(buf2, sizeof Plaintext,
20019+
buf1, sizeof Ciphertext + sizeof Tag,
20020+
AAD, sizeof AAD,
20021+
NULL, sizeof IV,
20022+
Key, sizeof Key);
20023+
if (ret != BAD_FUNC_ARG)
20024+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20025+
20026+
ret = wc_XChaCha20Poly1305_Decrypt(buf2, sizeof Plaintext,
20027+
buf1, sizeof Ciphertext + sizeof Tag,
20028+
AAD, sizeof AAD,
20029+
IV, sizeof IV,
20030+
NULL, sizeof Key);
20031+
if (ret != BAD_FUNC_ARG)
20032+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20033+
20034+
/* Wrong nonce size (12 instead of 24) */
20035+
ret = wc_XChaCha20Poly1305_Decrypt(buf2, sizeof Plaintext,
20036+
buf1, sizeof Ciphertext + sizeof Tag,
20037+
AAD, sizeof AAD,
20038+
IV, CHACHA20_POLY1305_AEAD_IV_SIZE,
20039+
Key, sizeof Key);
20040+
if (ret != BAD_FUNC_ARG)
20041+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20042+
20043+
/* Wrong key size (16 instead of 32) */
20044+
ret = wc_XChaCha20Poly1305_Decrypt(buf2, sizeof Plaintext,
20045+
buf1, sizeof Ciphertext + sizeof Tag,
20046+
AAD, sizeof AAD,
20047+
IV, sizeof IV,
20048+
Key, 16);
20049+
if (ret != BAD_FUNC_ARG)
20050+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20051+
20052+
/* Insufficient buffer space */
20053+
ret = wc_XChaCha20Poly1305_Decrypt(buf2, sizeof Plaintext - 1,
20054+
buf1, sizeof Ciphertext + sizeof Tag,
20055+
AAD, sizeof AAD,
20056+
IV, sizeof IV,
20057+
Key, sizeof Key);
20058+
if (ret != BUFFER_E)
20059+
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), out);
20060+
20061+
ret = 0;
20062+
1988920063
out:
1989020064

1989120065
#if defined(WOLFSSL_SMALL_STACK) && !defined(WOLFSSL_NO_MALLOC)
1989220066
XFREE(buf1, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
1989320067
XFREE(buf2, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
20068+
XFREE(aead, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
1989420069
#endif
1989520070

1989620071
return ret;

0 commit comments

Comments
 (0)