From 15063884236018c934f8274dadd95d4b02ae9ae8 Mon Sep 17 00:00:00 2001 From: tb Date: Wed, 2 Aug 2023 08:02:56 +0000 Subject: [PATCH] Remove a 16 year old confusing lie The mod member of BN_BLINDING hasn't been /* just a reference */ since the branch prediction mitigations in OpenSSL bd31fb21 from March 2007. --- lib/libcrypto/bn/bn_blind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/bn/bn_blind.c b/lib/libcrypto/bn/bn_blind.c index 7332df2b567..20b82fc9bc7 100644 --- a/lib/libcrypto/bn/bn_blind.c +++ b/lib/libcrypto/bn/bn_blind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_blind.c,v 1.24 2023/07/28 10:05:16 tb Exp $ */ +/* $OpenBSD: bn_blind.c,v 1.25 2023/08/02 08:02:56 tb Exp $ */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * @@ -123,7 +123,7 @@ struct bn_blinding_st { BIGNUM *A; BIGNUM *Ai; BIGNUM *e; - BIGNUM *mod; /* just a reference */ + BIGNUM *mod; CRYPTO_THREADID tid; int counter; unsigned long flags; -- 2.20.1