summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-11-12 10:25:17 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-11-12 10:25:17 +0000
commita6dd9c63ae0c1f20ac66c3387ea785836097a2c2 (patch)
treee172ea48fa03056889fdb0555661926f7c006291 /lib/libcrypto
parent74a0ce2565e46c6ce1216a575f0a9c11c104989a (diff)
Rename ecp_smpl.c to ecp_methods.c
While not the greatest of names, ecp_methods.c is better than ecp_smpl.c. It matches the naming ecx_methods.c and in a subsequent commit it will become the new home of the stuff in ecp_mont.c as well. discussed with jsing
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/Makefile4
-rw-r--r--lib/libcrypto/ec/ecp_methods.c (renamed from lib/libcrypto/ec/ecp_smpl.c)2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile
index 9158a2e5948..796f6a24191 100644
--- a/lib/libcrypto/Makefile
+++ b/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.225 2024/11/06 04:08:26 tb Exp $
+# $OpenBSD: Makefile,v 1.226 2024/11/12 10:25:16 tb Exp $
LIB= crypto
LIBREBUILD=y
@@ -286,8 +286,8 @@ SRCS+= ec_lib.c
SRCS+= ec_mult.c
SRCS+= ec_pmeth.c
SRCS+= eck_prn.c
+SRCS+= ecp_methods.c
SRCS+= ecp_mont.c
-SRCS+= ecp_smpl.c
SRCS+= ecx_methods.c
# ecdh/
diff --git a/lib/libcrypto/ec/ecp_smpl.c b/lib/libcrypto/ec/ecp_methods.c
index 6430857e0f0..3dc7091850a 100644
--- a/lib/libcrypto/ec/ecp_smpl.c
+++ b/lib/libcrypto/ec/ecp_methods.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecp_smpl.c,v 1.61 2024/11/05 08:56:57 tb Exp $ */
+/* $OpenBSD: ecp_methods.c,v 1.1 2024/11/12 10:25:16 tb Exp $ */
/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de>
* for the OpenSSL project.
* Includes code written by Bodo Moeller for the OpenSSL project.