From 7fe8b6a60797c33d896cb1e34f152c4a7c2ac1a7 Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 28 Oct 2024 18:01:26 +0000 Subject: Expose eckey_compute_key() from ec_ameth This helper will be needed in a subsequent commit. ok jsing --- src/lib/libcrypto/ec/ec_ameth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/ec/ec_ameth.c') diff --git a/src/lib/libcrypto/ec/ec_ameth.c b/src/lib/libcrypto/ec/ec_ameth.c index a47110827e..246da22450 100644 --- a/src/lib/libcrypto/ec/ec_ameth.c +++ b/src/lib/libcrypto/ec/ec_ameth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_ameth.c,v 1.70 2024/10/20 10:52:51 tb Exp $ */ +/* $OpenBSD: ec_ameth.c,v 1.71 2024/10/28 18:01:26 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -310,7 +310,7 @@ eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) return -2; } -static int +int eckey_compute_pubkey(EC_KEY *eckey) { const BIGNUM *priv_key; -- cgit v1.2.3-55-g6feb