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
Name |
Description |
meth |
Method table to query. |
pverify |
Receives the buffer‐based verify callback, or NULL to skip. |
pverify_sig |
Receives the ECDSA_SIG‐based verify callback, or NULL to skip. |
Created with MrDocs