summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2021-04-20 17:30:33 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2021-04-20 17:30:33 +0000
commit3f14ea95affd854de8a72905977f409e81848c09 (patch)
tree0cac02ddb425b593c96dd3e967399c5e07ee44b4 /regress
parent1c84edd687106c83d0b3ccb331a3c6b402bcc98f (diff)
Adjust ectest.c for get_Jprojective coordinate change
Diffstat (limited to 'regress')
-rw-r--r--regress/lib/libcrypto/ec/ectest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/ec/ectest.c b/regress/lib/libcrypto/ec/ectest.c
index f090d309b2c..710bebe4835 100644
--- a/regress/lib/libcrypto/ec/ectest.c
+++ b/regress/lib/libcrypto/ec/ectest.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ectest.c,v 1.10 2021/04/20 17:19:39 tb Exp $ */
+/* $OpenBSD: ectest.c,v 1.11 2021/04/20 17:30:32 tb Exp $ */
/* crypto/ec/ectest.c */
/*
* Originally written by Bodo Moeller for the OpenSSL project.
@@ -336,7 +336,7 @@ prime_field_tests(void)
fprintf(stdout, "\nGenerator as octet string, hybrid form:\n ");
for (i = 0; i < len; i++) fprintf(stdout, "%02X", buf[i]);
- if (!EC_POINT_get_Jprojective_coordinates_GFp(group, R, x, y, z, ctx))
+ if (!EC_POINT_get_Jprojective_coordinates(group, R, x, y, z, ctx))
ABORT;
fprintf(stdout, "\nA representation of the inverse of that generator in\nJacobian projective coordinates:\n X = 0x");
BN_print_fp(stdout, x);