From 60a45aa7cc0d7eca1d75f99eafe6ccf7fc00b034 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Wed, 18 Nov 2015 17:44:11 -1000 Subject: [PATCH] Remove reference to removed |RSA_FLAG_NO_CONSTTIME| flag. Change-Id: I0bfdccf009772d4ff8cd419758ab5bfae95f5cc5 Reviewed-on: https://boringssl-review.googlesource.com/6530 Reviewed-by: Adam Langley --- crypto/rsa/rsa_impl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/rsa/rsa_impl.c b/crypto/rsa/rsa_impl.c index bee7f227..b1cfaa63 100644 --- a/crypto/rsa/rsa_impl.c +++ b/crypto/rsa/rsa_impl.c @@ -636,7 +636,7 @@ static int mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx) { BIGNUM *p = NULL, *q = NULL; /* Make sure BN_mod_inverse in Montgomery intialization uses the - * BN_FLG_CONSTTIME flag (unless RSA_FLAG_NO_CONSTTIME is set) */ + * BN_FLG_CONSTTIME flag. */ BN_init(&local_p); p = &local_p; BN_with_flags(p, rsa->p, BN_FLG_CONSTTIME);