From d695d1c9adb8fd142519436d84f528cbc9ca6aae Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 22 Mar 2023 14:21:17 +0100 Subject: [PATCH] src/openssl/internal.h: Adding ECDSA_SIG_recover_key_GFp function definition. --- src/openssl/internal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openssl/internal.h b/src/openssl/internal.h index b4c2a63..8da3f89 100644 --- a/src/openssl/internal.h +++ b/src/openssl/internal.h @@ -35,6 +35,8 @@ extern "C" { int calculate_pubkey(const EC_GROUP *group, const EC_KEY *ec_key, EC_POINT **point); +int ECDSA_SIG_recover_key_GFp(EC_KEY *eckey, const BIGNUM* r, const BIGNUM* s, const unsigned char *msg, int msglen, int recid, int check); + #ifdef __cplusplus } #endif