EC_KEY_METHOD_get_verify

Retrieve ECDSA verify callbacks from an EC_KEY_METHOD (deprecated).

Synopsis

Declared in <openssl/ec.h>

[[deprecated]]
void
EC_KEY_METHOD_get_verify(
    EC_KEY_METHOD const* meth,
    int(** pverify)(int, unsigned char const*, int, unsigned char const*, int, EC_KEY*),
    int(** pverify_sig)(unsigned char const*, int, ECDSA_SIG const*, EC_KEY*));

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Parameters

NameDescription
methMethod table to query.
pverifyReceives the buffer-based verify callback, or NULL to skip.
pverify_sigReceives the ECDSA_SIG-based verify callback, or NULL to skip.