summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/ec/ectest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/ec/ectest.c')
-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 f090d309b2..710bebe483 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.10 2021/04/20 17:19:39 tb Exp $ */ 1/* $OpenBSD: ectest.c,v 1.11 2021/04/20 17:30:32 tb Exp $ */
2/* crypto/ec/ectest.c */ 2/* crypto/ec/ectest.c */
3/* 3/*
4 * Originally written by Bodo Moeller for the OpenSSL project. 4 * Originally written by Bodo Moeller for the OpenSSL project.
@@ -336,7 +336,7 @@ prime_field_tests(void)
336 fprintf(stdout, "\nGenerator as octet string, hybrid form:\n "); 336 fprintf(stdout, "\nGenerator as octet string, hybrid form:\n ");
337 for (i = 0; i < len; i++) fprintf(stdout, "%02X", buf[i]); 337 for (i = 0; i < len; i++) fprintf(stdout, "%02X", buf[i]);
338 338
339 if (!EC_POINT_get_Jprojective_coordinates_GFp(group, R, x, y, z, ctx)) 339 if (!EC_POINT_get_Jprojective_coordinates(group, R, x, y, z, ctx))
340 ABORT; 340 ABORT;
341 fprintf(stdout, "\nA representation of the inverse of that generator in\nJacobian projective coordinates:\n X = 0x"); 341 fprintf(stdout, "\nA representation of the inverse of that generator in\nJacobian projective coordinates:\n X = 0x");
342 BN_print_fp(stdout, x); 342 BN_print_fp(stdout, x);