correctly NOP

there's still mac_test() which doesn't NOP correctly but who cares anyway?
This commit is contained in:
Steffen Jaeckel
2017-05-11 14:53:51 +02:00
parent f1118b4647
commit 1de3f2a1f6
11 changed files with 10 additions and 23 deletions
+1 -2
View File
@@ -7,8 +7,7 @@
int der_tests(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#else
+1 -2
View File
@@ -114,8 +114,7 @@ int dh_test (void)
int dh_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
+1 -2
View File
@@ -240,8 +240,7 @@ int dsa_test(void)
int dsa_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
+1 -2
View File
@@ -237,8 +237,7 @@ int ecc_tests (void)
int ecc_tests(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
-3
View File
@@ -114,9 +114,6 @@ int modes_test(void)
DO(ret = xts_test());
#endif
if (ret == CRYPT_NOP)
fprintf(stderr, "NOP");
return 0;
}
+1 -2
View File
@@ -57,8 +57,7 @@ int pkcs_1_eme_test(void)
int pkcs_1_eme_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
+1 -2
View File
@@ -53,8 +53,7 @@ int pkcs_1_emsa_test(void)
int pkcs_1_emsa_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
+1 -2
View File
@@ -57,8 +57,7 @@ int pkcs_1_oaep_test(void)
int pkcs_1_oaep_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
+1 -2
View File
@@ -58,8 +58,7 @@ int pkcs_1_pss_test(void)
int pkcs_1_pss_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
+1 -2
View File
@@ -87,8 +87,7 @@ int pkcs_1_test(void)
int pkcs_1_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif
+1 -2
View File
@@ -616,8 +616,7 @@ for (cnt = 0; cnt < len; ) {
int rsa_test(void)
{
fprintf(stderr, "NOP");
return 0;
return CRYPT_NOP;
}
#endif