summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2024-11-12 10:25:16 +0000
committertb <>2024-11-12 10:25:16 +0000
commit088662487129929009a46958682c59e34a5f6f65 (patch)
tree84cdeec81adef1c6c8eab5c3280b9236a5f2da9a /src/lib
parentca342fb6c81c80bf14c0c3b773d2916eb135cdcd (diff)
downloadopenbsd-088662487129929009a46958682c59e34a5f6f65.tar.gz
openbsd-088662487129929009a46958682c59e34a5f6f65.tar.bz2
openbsd-088662487129929009a46958682c59e34a5f6f65.zip
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 'src/lib')
-rw-r--r--src/lib/libcrypto/Makefile4
-rw-r--r--src/lib/libcrypto/ec/ecp_methods.c (renamed from src/lib/libcrypto/ec/ecp_smpl.c)2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index 9158a2e594..796f6a2419 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.225 2024/11/06 04:08:26 tb Exp $ 1# $OpenBSD: Makefile,v 1.226 2024/11/12 10:25:16 tb Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -286,8 +286,8 @@ SRCS+= ec_lib.c
286SRCS+= ec_mult.c 286SRCS+= ec_mult.c
287SRCS+= ec_pmeth.c 287SRCS+= ec_pmeth.c
288SRCS+= eck_prn.c 288SRCS+= eck_prn.c
289SRCS+= ecp_methods.c
289SRCS+= ecp_mont.c 290SRCS+= ecp_mont.c
290SRCS+= ecp_smpl.c
291SRCS+= ecx_methods.c 291SRCS+= ecx_methods.c
292 292
293# ecdh/ 293# ecdh/
diff --git a/src/lib/libcrypto/ec/ecp_smpl.c b/src/lib/libcrypto/ec/ecp_methods.c
index 6430857e0f..3dc7091850 100644
--- a/src/lib/libcrypto/ec/ecp_smpl.c
+++ b/src/lib/libcrypto/ec/ecp_methods.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecp_smpl.c,v 1.61 2024/11/05 08:56:57 tb Exp $ */ 1/* $OpenBSD: ecp_methods.c,v 1.1 2024/11/12 10:25:16 tb Exp $ */
2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> 2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de>
3 * for the OpenSSL project. 3 * for the OpenSSL project.
4 * Includes code written by Bodo Moeller for the OpenSSL project. 4 * Includes code written by Bodo Moeller for the OpenSSL project.