summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2023-08-02 08:02:56 +0000
committertb <>2023-08-02 08:02:56 +0000
commitae7a58304fcaeed4894c45e49d543ab8409e7660 (patch)
treeac78e9ba74b777d195574b5191eecf6f996f7fb0 /src/lib
parente2a475ded402d85f193b312184622480592d54d4 (diff)
downloadopenbsd-ae7a58304fcaeed4894c45e49d543ab8409e7660.tar.gz
openbsd-ae7a58304fcaeed4894c45e49d543ab8409e7660.tar.bz2
openbsd-ae7a58304fcaeed4894c45e49d543ab8409e7660.zip
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.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/bn/bn_blind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_blind.c b/src/lib/libcrypto/bn/bn_blind.c
index 7332df2b56..20b82fc9bc 100644
--- a/src/lib/libcrypto/bn/bn_blind.c
+++ b/src/lib/libcrypto/bn/bn_blind.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_blind.c,v 1.24 2023/07/28 10:05:16 tb Exp $ */ 1/* $OpenBSD: bn_blind.c,v 1.25 2023/08/02 08:02:56 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -123,7 +123,7 @@ struct bn_blinding_st {
123 BIGNUM *A; 123 BIGNUM *A;
124 BIGNUM *Ai; 124 BIGNUM *Ai;
125 BIGNUM *e; 125 BIGNUM *e;
126 BIGNUM *mod; /* just a reference */ 126 BIGNUM *mod;
127 CRYPTO_THREADID tid; 127 CRYPTO_THREADID tid;
128 int counter; 128 int counter;
129 unsigned long flags; 129 unsigned long flags;