EVP_R_PRIVATE_KEY_ENCODE_ERROR:146:private key encode error
EVP_R_PROVIDER_ASYM_CIPHER_FAILURE:232:provider asym cipher failure
EVP_R_PROVIDER_ASYM_CIPHER_NOT_SUPPORTED:235:provider asym cipher not supported
+EVP_R_PROVIDER_GET_CTX_PARAMS_NOT_SUPPORTED:238:\
+ provider get ctx params not supported
EVP_R_PROVIDER_KEYMGMT_FAILURE:233:provider keymgmt failure
EVP_R_PROVIDER_KEYMGMT_NOT_SUPPORTED:236:provider keymgmt not supported
EVP_R_PROVIDER_SIGNATURE_FAILURE:234:provider signature failure
"provider asym cipher failure"},
{ERR_PACK(ERR_LIB_EVP, 0, EVP_R_PROVIDER_ASYM_CIPHER_NOT_SUPPORTED),
"provider asym cipher not supported"},
+ {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_PROVIDER_GET_CTX_PARAMS_NOT_SUPPORTED),
+ "provider get ctx params not supported"},
{ERR_PACK(ERR_LIB_EVP, 0, EVP_R_PROVIDER_KEYMGMT_FAILURE),
"provider keymgmt failure"},
{ERR_PACK(ERR_LIB_EVP, 0, EVP_R_PROVIDER_KEYMGMT_NOT_SUPPORTED),
return evp_pkey_ctx_get_params_to_ctrl(ctx, params);
#endif
}
+ ERR_raise_data(ERR_LIB_EVP, EVP_R_PROVIDER_GET_CTX_PARAMS_NOT_SUPPORTED,
+ "EVP_PKEY_OP=0x%x", ctx->operation);
return 0;
}
# define EVP_R_PRIVATE_KEY_ENCODE_ERROR 146
# define EVP_R_PROVIDER_ASYM_CIPHER_FAILURE 232
# define EVP_R_PROVIDER_ASYM_CIPHER_NOT_SUPPORTED 235
+# define EVP_R_PROVIDER_GET_CTX_PARAMS_NOT_SUPPORTED 238
# define EVP_R_PROVIDER_KEYMGMT_FAILURE 233
# define EVP_R_PROVIDER_KEYMGMT_NOT_SUPPORTED 236
# define EVP_R_PROVIDER_SIGNATURE_FAILURE 234