summaryrefslogtreecommitdiff
path: root/src/crypto/fipsmodule/bn/sqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/fipsmodule/bn/sqrt.c')
-rw-r--r--src/crypto/fipsmodule/bn/sqrt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/fipsmodule/bn/sqrt.c b/src/crypto/fipsmodule/bn/sqrt.c
index 852512cd..23417d14 100644
--- a/src/crypto/fipsmodule/bn/sqrt.c
+++ b/src/crypto/fipsmodule/bn/sqrt.c
@@ -184,7 +184,7 @@ BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) {
// November 1992.)
// t := 2*a
- if (!bn_mod_lshift1_quick_ctx(t, A, p, ctx)) {
+ if (!bn_mod_lshift1_consttime(t, A, p, ctx)) {
goto end;
}