diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-05-29 11:09:23 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-05-29 11:09:23 +0000 |
commit | a34a6816abefdcfe2c00295edb510cc5c99ad52c (patch) | |
tree | a264baadccf7add09a1b285786307ddd774472a5 /library/cpp/openssl/crypto/rsa.cpp | |
parent | 84ec9093e10073ab151bfe5f81037a0d017c2362 (diff) | |
parent | fdbc38349df2ee0ddc678fa2bffe84786f9639a3 (diff) | |
download | ydb-a34a6816abefdcfe2c00295edb510cc5c99ad52c.tar.gz |
Merge branch 'rightlib' into merge-libs-250529-1108
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()) { |