EVP_PKEY_get_field_type.3ossl - Man Page

get field type or point conversion form of a key

Synopsis

 #include <openssl/evp.h>

 int EVP_PKEY_get_field_type(const EVP_PKEY *pkey);
 int EVP_PKEY_get_ec_point_conv_form(const EVP_PKEY *pkey);

Description

EVP_PKEY_get_field_type() returns the field type NID of the pkey, if pkey's key type supports it. The types currently supported by the built-in OpenSSL providers are either NID_X9_62_prime_field for prime curves or NID_X9_62_characteristic_two_field for binary curves; these values are defined in the <openssl/obj_mac.h> header file.

EVP_PKEY_get_ec_point_conv_form() returns the point conversion format of the pkey, if pkey's key type supports it.

Notes

Among the standard OpenSSL key types, this is only supported for EC and SM2 keys.  Other providers may support this for additional key types.

Return Values

EVP_PKEY_get_field_type() returns the field type NID or 0 on error.

EVP_PKEY_get_ec_point_conv_form() returns the point conversion format number (see EC_GROUP_copy(3)) or 0 on error.

See Also

EC_GROUP_copy(3)

History

These functions were added in OpenSSL 3.0.

Referenced By

The man page EVP_PKEY_get_ec_point_conv_form.3ossl(3) is an alias of EVP_PKEY_get_field_type.3ossl(3).

2024-04-04 3.2.1 OpenSSL