Skip to content

Commit 58738b1

Browse files
committed
s390x assembly pack: fix x448 handling of non-canonical values
The s390x x448 implementation does not correctly reduce non-canonical values i.e., u-coordinates >= p = 2^448 - 2^224 - 1. Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Matt Caswell <[email protected]> (Merged from #10339)
1 parent 8261122 commit 58738b1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

crypto/ec/ecx_meth.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -907,10 +907,8 @@ static void s390x_x448_mod_p(unsigned char u[56])
907907
c >>= 8;
908908
}
909909

910-
if (u_red[0] & 0x80) {
911-
u_red[0] &= 0x7f;
910+
if (c)
912911
memcpy(u, u_red, sizeof(u_red));
913-
}
914912
}
915913

916914
static int s390x_x25519_mul(unsigned char u_dst[32],
@@ -966,7 +964,7 @@ static int s390x_x448_mul(unsigned char u_dst[56],
966964
memcpy(param.x448.d_src, d_src, 56);
967965

968966
s390x_flip_endian64(param.x448.u_src, param.x448.u_src);
969-
s390x_x448_mod_p(param.x448.u_src);
967+
s390x_x448_mod_p(param.x448.u_src + 8);
970968

971969
s390x_flip_endian64(param.x448.d_src, param.x448.d_src);
972970
param.x448.d_src[63] &= 252;

0 commit comments

Comments
 (0)