aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl/crypto/rsa.cpp
diff options
context:
space:
mode:
authorAlexander Smirnov <alex@ydb.tech>2025-05-29 11:09:23 +0000
committerAlexander Smirnov <alex@ydb.tech>2025-05-29 11:09:23 +0000
commita34a6816abefdcfe2c00295edb510cc5c99ad52c (patch)
treea264baadccf7add09a1b285786307ddd774472a5 /library/cpp/openssl/crypto/rsa.cpp
parent84ec9093e10073ab151bfe5f81037a0d017c2362 (diff)
parentfdbc38349df2ee0ddc678fa2bffe84786f9639a3 (diff)
downloadydb-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.cpp9
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())
{