diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/rsa/rsa_blinding.c (renamed from src/lib/libcrypto/bn/bn_blind.c) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn_blind.c b/src/lib/libcrypto/rsa/rsa_blinding.c index 1d0835b27f..bc267b1c51 100644 --- a/src/lib/libcrypto/bn/bn_blind.c +++ b/src/lib/libcrypto/rsa/rsa_blinding.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_blind.c,v 1.43 2023/08/09 09:20:00 tb Exp $ */ | 1 | /* $OpenBSD: rsa_blinding.c,v 1.1 2023/08/09 09:23:03 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 | * |
@@ -114,8 +114,10 @@ | |||
114 | #include <openssl/opensslconf.h> | 114 | #include <openssl/opensslconf.h> |
115 | 115 | ||
116 | #include <openssl/err.h> | 116 | #include <openssl/err.h> |
117 | #include <openssl/rsa.h> | ||
117 | 118 | ||
118 | #include "bn_local.h" | 119 | #include "bn_local.h" |
120 | #include "rsa_local.h" | ||
119 | 121 | ||
120 | #define BN_BLINDING_COUNTER 32 | 122 | #define BN_BLINDING_COUNTER 32 |
121 | 123 | ||