diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 10:05:17 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 10:05:17 +0000 |
commit | 71d0dcdec7f3382b2d98f7d1f3c3d81b129f21bf (patch) | |
tree | fc06155e597c4fc7b614bd29cdfb449a146b9235 /lib/libcrypto/rsa/rsa_lib.c | |
parent | 32bad0f97c7676f11389b6f5cd0e698f082b717a (diff) |
Make BN_BLINDING internal
RSA is pretty bad. In my most optimistic moments I dream of a world that
stopped using it. That won't happen during my lifetime, unfortunately.
Blinding is one way of making it a little less leaky. Unfortunately this
side-channel leak mitigation leaked out of the library for no good reason.
Let's at least fix that aspect of it.
ok jsing
Diffstat (limited to 'lib/libcrypto/rsa/rsa_lib.c')
-rw-r--r-- | lib/libcrypto/rsa/rsa_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/rsa/rsa_lib.c b/lib/libcrypto/rsa/rsa_lib.c index 8831253b9fe..fbd2c2274c3 100644 --- a/lib/libcrypto/rsa/rsa_lib.c +++ b/lib/libcrypto/rsa/rsa_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa_lib.c,v 1.47 2023/07/08 12:26:45 beck Exp $ */ +/* $OpenBSD: rsa_lib.c,v 1.48 2023/07/28 10:05:16 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -67,6 +67,7 @@ #include <openssl/lhash.h> #include <openssl/rsa.h> +#include "bn_local.h" #include "evp_local.h" #include "rsa_local.h" |