s/strncmp/memcmp/g
This commit is contained in:
8
test.c
8
test.c
@@ -92,7 +92,7 @@ static void test_encrypt_ecb(void)
|
|||||||
|
|
||||||
printf("ECB decrypt: ");
|
printf("ECB decrypt: ");
|
||||||
|
|
||||||
if(0 == strncmp((char*) out, (char*) buffer, 16))
|
if(0 == memcmp((char*) out, (char*) buffer, 16))
|
||||||
{
|
{
|
||||||
printf("SUCCESS!\n");
|
printf("SUCCESS!\n");
|
||||||
}
|
}
|
||||||
@@ -125,7 +125,7 @@ static void test_decrypt_cbc(void)
|
|||||||
|
|
||||||
printf("CBC decrypt: ");
|
printf("CBC decrypt: ");
|
||||||
|
|
||||||
if(0 == strncmp((char*) out, (char*) buffer, 64))
|
if(0 == memcmp((char*) out, (char*) buffer, 64))
|
||||||
{
|
{
|
||||||
printf("SUCCESS!\n");
|
printf("SUCCESS!\n");
|
||||||
}
|
}
|
||||||
@@ -153,7 +153,7 @@ static void test_encrypt_cbc(void)
|
|||||||
|
|
||||||
printf("CBC encrypt: ");
|
printf("CBC encrypt: ");
|
||||||
|
|
||||||
if(0 == strncmp((char*) out, (char*) buffer, 64))
|
if(0 == memcmp((char*) out, (char*) buffer, 64))
|
||||||
{
|
{
|
||||||
printf("SUCCESS!\n");
|
printf("SUCCESS!\n");
|
||||||
}
|
}
|
||||||
@@ -175,7 +175,7 @@ static void test_decrypt_ecb(void)
|
|||||||
|
|
||||||
printf("ECB decrypt: ");
|
printf("ECB decrypt: ");
|
||||||
|
|
||||||
if(0 == strncmp((char*) out, (char*) buffer, 16))
|
if(0 == memcmp((char*) out, (char*) buffer, 16))
|
||||||
{
|
{
|
||||||
printf("SUCCESS!\n");
|
printf("SUCCESS!\n");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user