File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/regress/lib/libcrypto/evp Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- /* $OpenBSD: evp_ecx_test.c,v 1.2 2022/11/22 20:04:51 tb Exp $ */
1
+ /* $OpenBSD: evp_ecx_test.c,v 1.3 2022/11/23 07:25:01 tb Exp $ */
2
2
/*
3
3
* Copyright (c) 2022 Joel Sing <jsing@openbsd.org>
4
4
*
@@ -725,7 +725,7 @@ ecx_x25519_raw_key_test(void)
725
725
if (pub_key_len != sizeof (x25519_raw_pub_key_1 )) {
726
726
fprintf (stderr , "FAIL: raw public key length differs "
727
727
"(%zu != %zu)\n" , pub_key_len ,
728
- sizeof (x25519_raw_pub_key_2 ));
728
+ sizeof (x25519_raw_pub_key_1 ));
729
729
goto failure ;
730
730
}
731
731
if ((pub_key = malloc (pub_key_len )) == NULL )
@@ -739,7 +739,7 @@ ecx_x25519_raw_key_test(void)
739
739
fprintf (stderr , "Got:\n" );
740
740
hexdump (pub_key , pub_key_len );
741
741
fprintf (stderr , "Want:\n" );
742
- hexdump (x25519_raw_pub_key_2 , sizeof (x25519_raw_pub_key_2 ));
742
+ hexdump (x25519_raw_pub_key_1 , sizeof (x25519_raw_pub_key_1 ));
743
743
goto failure ;
744
744
}
745
745
You can’t perform that action at this time.
0 commit comments