diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2025-05-30 21:14:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-30 21:14:52 +0000 |
commit | c75cf6fa89ba44e2fa74a15232593b2e8423ed3f (patch) | |
tree | a7f428153ad7b3109180af04a9c84af2b0ab2a16 /library/cpp/openssl/crypto/rsa.cpp | |
parent | b21606bc4b50665ea3fdca703e13a4b4d7a44284 (diff) | |
parent | 8728b9da66674488bde07a092040097e46de9366 (diff) | |
download | ydb-c75cf6fa89ba44e2fa74a15232593b2e8423ed3f.tar.gz |
Library import 250529-1108 (#19003)
Diffstat (limited to 'library/cpp/openssl/crypto/rsa.cpp')
-rw-r--r-- | library/cpp/openssl/crypto/rsa.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/library/cpp/openssl/crypto/rsa.cpp b/library/cpp/openssl/crypto/rsa.cpp index 4b1d6648268..c9d2e07b89d 100644 --- a/library/cpp/openssl/crypto/rsa.cpp +++ b/library/cpp/openssl/crypto/rsa.cpp @@ -1,7 +1,6 @@ #include "rsa.h" #include <library/cpp/openssl/big_integer/big_integer.h> -#include <library/cpp/openssl/init/init.h> #include <util/generic/yexception.h> #include <util/generic/buffer.h> @@ -12,14 +11,6 @@ using namespace NOpenSsl; using namespace NOpenSsl::NRsa; -namespace { - struct TInit { - inline TInit() { - InitOpenSSL(); - } - } INIT; -} - TPublicKey::TPublicKey(const TBigInteger& e, const TBigInteger& n) : Key_(RSA_new()) { |