diff options
author | tb <> | 2023-08-09 09:23:03 +0000 |
---|---|---|
committer | tb <> | 2023-08-09 09:23:03 +0000 |
commit | fb26e3d813e4ccd04c6d557d46d14abf011c4641 (patch) | |
tree | 797f17896c37c12a04247ce5f49fb5c828bb2f3d /src/lib/libcrypto/rsa/rsa_blinding.c | |
parent | 41d4e0ff7ca56d4526056b45876cfa80a4d37e4a (diff) | |
download | openbsd-fb26e3d813e4ccd04c6d557d46d14abf011c4641.tar.gz openbsd-fb26e3d813e4ccd04c6d557d46d14abf011c4641.tar.bz2 openbsd-fb26e3d813e4ccd04c6d557d46d14abf011c4641.zip |
Move bn_blind.c to rsa_blinding.c
discussed with jsing
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 | ||