Lines Matching refs:fips
549 static int test_unprotected_via_DER(const char *type, EVP_PKEY *key, int fips) in test_unprotected_via_DER() argument
557 dump_der, fips ? 0 : FLAG_FAIL_IF_FIPS); in test_unprotected_via_DER()
571 static int test_unprotected_via_PEM(const char *type, EVP_PKEY *key, int fips) in test_unprotected_via_PEM() argument
579 dump_pem, fips ? 0 : FLAG_FAIL_IF_FIPS); in test_unprotected_via_PEM()
726 static int test_protected_via_DER(const char *type, EVP_PKEY *key, int fips) in test_protected_via_DER() argument
735 dump_der, fips ? 0 : FLAG_FAIL_IF_FIPS); in test_protected_via_DER()
749 static int test_protected_via_PEM(const char *type, EVP_PKEY *key, int fips) in test_protected_via_PEM() argument
758 dump_pem, fips ? 0 : FLAG_FAIL_IF_FIPS); in test_protected_via_PEM()
819 static int test_public_via_DER(const char *type, EVP_PKEY *key, int fips) in test_public_via_DER() argument
827 fips ? 0 : FLAG_FAIL_IF_FIPS); in test_public_via_DER()
841 static int test_public_via_PEM(const char *type, EVP_PKEY *key, int fips) in test_public_via_PEM() argument
849 fips ? 0 : FLAG_FAIL_IF_FIPS); in test_public_via_PEM()
894 #define IMPLEMENT_TEST_SUITE(KEYTYPE, KEYTYPEstr, fips) \ argument
897 return test_unprotected_via_DER(KEYTYPEstr, key_##KEYTYPE, fips); \
901 return test_unprotected_via_PEM(KEYTYPEstr, key_##KEYTYPE, fips); \
905 return test_protected_via_DER(KEYTYPEstr, key_##KEYTYPE, fips); \
909 return test_protected_via_PEM(KEYTYPEstr, key_##KEYTYPE, fips); \
913 return test_public_via_DER(KEYTYPEstr, key_##KEYTYPE, fips); \
917 return test_public_via_PEM(KEYTYPEstr, key_##KEYTYPE, fips); \