summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ec/ec_local.h')
-rw-r--r--src/lib/libcrypto/ec/ec_local.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h
index 0d219e8e21..7a1f90886d 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.23 2023/07/03 07:26:40 tb Exp $ */ 1/* $OpenBSD: ec_local.h,v 1.24 2023/07/05 08:39:40 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 */
@@ -341,12 +341,12 @@ struct ec_key_method_st {
341 341
342#define EC_KEY_METHOD_DYNAMIC 1 342#define EC_KEY_METHOD_DYNAMIC 1
343 343
344int ossl_ec_key_gen(EC_KEY *eckey); 344int ec_key_gen(EC_KEY *eckey);
345int ossl_ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, 345int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
346 void *(*KDF) (const void *in, size_t inlen, void *out, size_t *outlen)); 346 void *(*KDF) (const void *in, size_t inlen, void *out, size_t *outlen));
347int ossl_ecdsa_verify(int type, const unsigned char *dgst, int dgst_len, 347int ecdsa_verify(int type, const unsigned char *dgst, int dgst_len,
348 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey); 348 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey);
349int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len, 349int ecdsa_verify_sig(const unsigned char *dgst, int dgst_len,
350 const ECDSA_SIG *sig, EC_KEY *eckey); 350 const ECDSA_SIG *sig, EC_KEY *eckey);
351 351
352/* 352/*