diff options
author | tb <> | 2023-08-02 08:02:56 +0000 |
---|---|---|
committer | tb <> | 2023-08-02 08:02:56 +0000 |
commit | ae7a58304fcaeed4894c45e49d543ab8409e7660 (patch) | |
tree | ac78e9ba74b777d195574b5191eecf6f996f7fb0 /src/lib | |
parent | e2a475ded402d85f193b312184622480592d54d4 (diff) | |
download | openbsd-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.c | 4 |
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; |