diff options
author | tb <> | 2024-11-12 10:25:16 +0000 |
---|---|---|
committer | tb <> | 2024-11-12 10:25:16 +0000 |
commit | 088662487129929009a46958682c59e34a5f6f65 (patch) | |
tree | 84cdeec81adef1c6c8eab5c3280b9236a5f2da9a /src/lib | |
parent | ca342fb6c81c80bf14c0c3b773d2916eb135cdcd (diff) | |
download | openbsd-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/Makefile | 4 | ||||
-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 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -286,8 +286,8 @@ SRCS+= ec_lib.c | |||
286 | SRCS+= ec_mult.c | 286 | SRCS+= ec_mult.c |
287 | SRCS+= ec_pmeth.c | 287 | SRCS+= ec_pmeth.c |
288 | SRCS+= eck_prn.c | 288 | SRCS+= eck_prn.c |
289 | SRCS+= ecp_methods.c | ||
289 | SRCS+= ecp_mont.c | 290 | SRCS+= ecp_mont.c |
290 | SRCS+= ecp_smpl.c | ||
291 | SRCS+= ecx_methods.c | 291 | SRCS+= 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. |