summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2024-10-28 18:01:26 +0000
committertb <>2024-10-28 18:01:26 +0000
commit7fe8b6a60797c33d896cb1e34f152c4a7c2ac1a7 (patch)
treecd8e83a1317983c280eb48717ea32c45adb363d5 /src/lib
parent3730b3cfc1d512f1a6c71b83d5cbdecf724b845a (diff)
downloadopenbsd-7fe8b6a60797c33d896cb1e34f152c4a7c2ac1a7.tar.gz
openbsd-7fe8b6a60797c33d896cb1e34f152c4a7c2ac1a7.tar.bz2
openbsd-7fe8b6a60797c33d896cb1e34f152c4a7c2ac1a7.zip
Expose eckey_compute_key() from ec_ameth
This helper will be needed in a subsequent commit. ok jsing
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/ec/ec_ameth.c4
-rw-r--r--src/lib/libcrypto/ec/ec_local.h3
2 files changed, 4 insertions, 3 deletions
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 @@
1/* $OpenBSD: ec_ameth.c,v 1.70 2024/10/20 10:52:51 tb Exp $ */ 1/* $OpenBSD: ec_ameth.c,v 1.71 2024/10/28 18:01:26 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2006. 3 * project 2006.
4 */ 4 */
@@ -310,7 +310,7 @@ eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
310 return -2; 310 return -2;
311} 311}
312 312
313static int 313int
314eckey_compute_pubkey(EC_KEY *eckey) 314eckey_compute_pubkey(EC_KEY *eckey)
315{ 315{
316 const BIGNUM *priv_key; 316 const BIGNUM *priv_key;
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h
index 4786f8520b..1a49067cd8 100644
--- a/src/lib/libcrypto/ec/ec_local.h
+++ b/src/lib/libcrypto/ec/ec_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_local.h,v 1.31 2024/10/22 12:06:08 tb Exp $ */ 1/* $OpenBSD: ec_local.h,v 1.32 2024/10/28 18:01:26 tb Exp $ */
2/* 2/*
3 * Originally written by Bodo Moeller for the OpenSSL project. 3 * Originally written by Bodo Moeller for the OpenSSL project.
4 */ 4 */
@@ -336,6 +336,7 @@ struct ec_key_method_st {
336 336
337#define EC_KEY_METHOD_DYNAMIC 1 337#define EC_KEY_METHOD_DYNAMIC 1
338 338
339int eckey_compute_pubkey(EC_KEY *eckey);
339int ec_key_gen(EC_KEY *eckey); 340int ec_key_gen(EC_KEY *eckey);
340int ecdh_compute_key(unsigned char **out, size_t *out_len, 341int ecdh_compute_key(unsigned char **out, size_t *out_len,
341 const EC_POINT *pub_key, const EC_KEY *ecdh); 342 const EC_POINT *pub_key, const EC_KEY *ecdh);