summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec_local.h
diff options
context:
space:
mode:
authortb <>2025-01-11 15:26:07 +0000
committertb <>2025-01-11 15:26:07 +0000
commit02bbf3657f5074177fdaebad55dd44d1e85bfb33 (patch)
treed2a94bc40907a4d97a7da9c1f63b88d3ac7761c6 /src/lib/libcrypto/ec/ec_local.h
parentd0ff9d15d4c443024f55be164e9b20c7837f1786 (diff)
downloadopenbsd-02bbf3657f5074177fdaebad55dd44d1e85bfb33.tar.gz
openbsd-02bbf3657f5074177fdaebad55dd44d1e85bfb33.tar.bz2
openbsd-02bbf3657f5074177fdaebad55dd44d1e85bfb33.zip
Rename the is_on_curve() method to point_is_on_curve()
Rename ec_is_on_curve() to ec_point_is_on_curve() and ec_cmp() to ec_point_cmp().
Diffstat (limited to 'src/lib/libcrypto/ec/ec_local.h')
-rw-r--r--src/lib/libcrypto/ec/ec_local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h
index 66ff15a4f8..ecb81fc50b 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.58 2025/01/11 15:20:23 tb Exp $ */ 1/* $OpenBSD: ec_local.h,v 1.59 2025/01/11 15:26:07 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 */
@@ -87,7 +87,7 @@ struct ec_method_st {
87 int (*group_get_curve)(const EC_GROUP *, BIGNUM *p, BIGNUM *a, 87 int (*group_get_curve)(const EC_GROUP *, BIGNUM *p, BIGNUM *a,
88 BIGNUM *b, BN_CTX *); 88 BIGNUM *b, BN_CTX *);
89 89
90 int (*is_on_curve)(const EC_GROUP *, const EC_POINT *, BN_CTX *); 90 int (*point_is_on_curve)(const EC_GROUP *, const EC_POINT *, BN_CTX *);
91 int (*point_cmp)(const EC_GROUP *, const EC_POINT *a, const EC_POINT *b, 91 int (*point_cmp)(const EC_GROUP *, const EC_POINT *a, const EC_POINT *b,
92 BN_CTX *); 92 BN_CTX *);
93 93