EC_KEY_METHOD_set_verify

Set ECDSA verify callbacks on an EC_KEY_METHOD (deprecated).

Synopsis

Declared in <openssl/ec.h>

[[deprecated]]
void
EC_KEY_METHOD_set_verify(
    EC_KEY_METHOD* meth,
    int(* verify)(int, unsigned char const*, int, unsigned char const*, int, EC_KEY*),
    int(* verify_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 update.
verifyCallback that verifies a DER/raw signature buffer, or NULL to clear.
verify_sigCallback that verifies an ECDSA_SIG structure, or NULL to clear.