summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2025-01-06 10:43:26 +0000
committertb <>2025-01-06 10:43:26 +0000
commit41644a653441af880b86e412a5c8e52ef0c53151 (patch)
tree2527e0d617eb8ebfcd4100715c58f030ab4d888a
parent16003196b4fa5e9ec4e589655b8e56c75069df4d (diff)
downloadopenbsd-41644a653441af880b86e412a5c8e52ef0c53151.tar.gz
openbsd-41644a653441af880b86e412a5c8e52ef0c53151.tar.bz2
openbsd-41644a653441af880b86e412a5c8e52ef0c53151.zip
An -> The
There's only one inverse and in standard affine coordinates it only has one representation.
-rw-r--r--src/regress/lib/libcrypto/ec/ectest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/ec/ectest.c b/src/regress/lib/libcrypto/ec/ectest.c
index 973202700d..48f05eeeee 100644
--- a/src/regress/lib/libcrypto/ec/ectest.c
+++ b/src/regress/lib/libcrypto/ec/ectest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ectest.c,v 1.25 2025/01/06 10:42:28 tb Exp $ */ 1/* $OpenBSD: ectest.c,v 1.26 2025/01/06 10:43:26 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 */
@@ -324,7 +324,7 @@ prime_field_tests(void)
324 324
325 if (!EC_POINT_get_affine_coordinates(group, R, x, y, ctx)) 325 if (!EC_POINT_get_affine_coordinates(group, R, x, y, ctx))
326 ABORT; 326 ABORT;
327 fprintf(stdout, "\nAn inverse of that generator:\n X = 0x"); 327 fprintf(stdout, "\nThe inverse of that generator:\n X = 0x");
328 BN_print_fp(stdout, x); 328 BN_print_fp(stdout, x);
329 fprintf(stdout, ", Y = 0x"); 329 fprintf(stdout, ", Y = 0x");
330 BN_print_fp(stdout, y); 330 BN_print_fp(stdout, y);