aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl/crypto/rsa.h
diff options
context:
space:
mode:
authorqrort <qrort@yandex-team.com>2022-12-02 11:31:25 +0300
committerqrort <qrort@yandex-team.com>2022-12-02 11:31:25 +0300
commitb1f4ffc9c8abff3ba58dc1ec9a9f92d2f0de6806 (patch)
tree2a23209faf0fea5586a6d4b9cee60d1b318d29fe /library/cpp/openssl/crypto/rsa.h
parent559174a9144de40d6bb3997ea4073c82289b4974 (diff)
downloadydb-b1f4ffc9c8abff3ba58dc1ec9a9f92d2f0de6806.tar.gz
remove kikimr/driver DEPENDS
Diffstat (limited to 'library/cpp/openssl/crypto/rsa.h')
-rw-r--r--library/cpp/openssl/crypto/rsa.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/library/cpp/openssl/crypto/rsa.h b/library/cpp/openssl/crypto/rsa.h
deleted file mode 100644
index 3bf9e4a233..0000000000
--- a/library/cpp/openssl/crypto/rsa.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#pragma once
-
-#include <util/generic/utility.h>
-#include <util/generic/noncopyable.h>
-
-struct rsa_st;
-
-namespace NOpenSsl {
- class TBigInteger;
-
- namespace NRsa {
- class TPublicKey: public TNonCopyable {
- public:
- inline TPublicKey(TPublicKey&& other) noexcept {
- Swap(other);
- }
-
- TPublicKey(const TBigInteger& e, const TBigInteger& n);
- ~TPublicKey() noexcept;
-
- size_t OutputLength() const noexcept;
-
- TBigInteger EncryptNoPad(const TBigInteger& src) const;
- size_t EncryptNoPad(void* dst, const void* src, size_t size) const;
-
- inline void Swap(TPublicKey& other) noexcept {
- DoSwap(Key_, other.Key_);
- }
-
- private:
- rsa_st* Key_ = nullptr;
- };
- };
-}