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

Name

Description

meth

Method table to update.

verify

Callback that verifies a DER/raw signature buffer, or NULL to clear.

verify_sig

Callback that verifies an ECDSA_SIG structure, or NULL to clear.

Created with MrDocs