mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-04 05:04:41 +02:00
I think I now understand the trailing white space...
This commit is contained in:
21
tests/api.c
21
tests/api.c
@@ -14824,8 +14824,7 @@ static void test_wc_PKCS7_EncodeEncryptedData (void)
|
||||
NULL, sizeof(decoded)), BAD_FUNC_ARG);
|
||||
AssertIntEQ(wc_PKCS7_DecodeEncryptedData(&pkcs7, encrypted, encryptedSz,
|
||||
decoded, 0), BAD_FUNC_ARG);
|
||||
/* Test
|
||||
struct fields */
|
||||
/* Test struct fields */
|
||||
|
||||
tmpBytePtr = pkcs7.encryptionKey;
|
||||
pkcs7.encryptionKey = NULL;
|
||||
@@ -14841,9 +14840,12 @@ static void test_wc_PKCS7_EncodeEncryptedData (void)
|
||||
#endif
|
||||
} /* END test_wc_PKCS7_EncodeEncryptedData() */
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------------*
|
||||
| hash.h Tests
|
||||
*----------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
static int test_wc_HashInit(void)
|
||||
{
|
||||
int ret = 0, i; /* 0 indicates tests passed, 1 indicates failure */
|
||||
@@ -14875,29 +14877,29 @@ static int test_wc_HashInit(void)
|
||||
int enumlen = (sizeof(enumArray)/sizeof(enum wc_HashType));
|
||||
|
||||
/* For loop to test various arguments... */
|
||||
for(i = 0; i < enumlen; i++) {
|
||||
for (i = 0; i < enumlen; i++) {
|
||||
/* check for bad args */
|
||||
if(wc_HashInit(&hash, enumArray[i]) == BAD_FUNC_ARG) {
|
||||
if (wc_HashInit(&hash, enumArray[i]) == BAD_FUNC_ARG) {
|
||||
ret = 1;
|
||||
break;
|
||||
}
|
||||
/* check for null ptr */
|
||||
if(wc_HashInit(NULL, enumArray[i]) != BAD_FUNC_ARG) {
|
||||
if (wc_HashInit(NULL, enumArray[i]) != BAD_FUNC_ARG) {
|
||||
ret = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
}/* end of for loop */
|
||||
} /* end of for loop */
|
||||
|
||||
printf(testingFmt, "wc_HashInit()");
|
||||
if(ret==0) { /* all tests have passed */
|
||||
if (ret==0) { /* all tests have passed */
|
||||
printf(resultFmt, passed);
|
||||
}
|
||||
if(ret==1) { /* a test has failed */
|
||||
else { /* a test has failed */
|
||||
printf(resultFmt, failed);
|
||||
}
|
||||
return ret;
|
||||
}/* end of test_wc_HashInit */
|
||||
} /* end of test_wc_HashInit */
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------------*
|
||||
@@ -19050,7 +19052,6 @@ void ApiTest(void)
|
||||
test_wc_PKCS7_EncodeDecodeEnvelopedData();
|
||||
test_wc_PKCS7_EncodeEncryptedData();
|
||||
|
||||
|
||||
printf(" End API Tests\n");
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user