X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fec%2Fcurve448%2Ffield.h;fp=crypto%2Fec%2Fcurve448%2Ffield.h;h=2b7fc2aa951b655175ad805af9099ad1fd464dcc;hp=b985d453e783b9e7274cfbf97bcf4fef375c7e63;hb=bd74eae1be6c11bbfa95542daa7d59d461464853;hpb=7e492f3372ed83af074a63d5920f13de7e3455b6 diff --git a/crypto/ec/curve448/field.h b/crypto/ec/curve448/field.h index b985d453e7..2b7fc2aa95 100644 --- a/crypto/ec/curve448/field.h +++ b/crypto/ec/curve448/field.h @@ -128,7 +128,7 @@ static ossl_inline void gf_mulw(gf c, const gf a, int32_t w) /* Constant time, x = is_z ? z : y */ static ossl_inline void gf_cond_sel(gf x, const gf y, const gf z, mask_t is_z) { - constant_time_select(x, y, z, sizeof(gf), is_z, 0); + constant_time_select_c448(x, y, z, sizeof(gf), is_z, 0); } /* Constant time, if (neg) x=-x; */