aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl
diff options
context:
space:
mode:
authormonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
committermonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
commit06e5c21a835c0e923506c4ff27929f34e00761c2 (patch)
tree75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /library/cpp/openssl
parent03f024c4412e3aa613bb543cf1660176320ba8f4 (diff)
downloadydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz
fix ya.make
Diffstat (limited to 'library/cpp/openssl')
-rw-r--r--library/cpp/openssl/holders/bn.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/library/cpp/openssl/holders/bn.h b/library/cpp/openssl/holders/bn.h
deleted file mode 100644
index 72ab675444..0000000000
--- a/library/cpp/openssl/holders/bn.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include "holder.h"
-
-#include <openssl/bn.h>
-
-namespace NOpenSSL {
- class TBignum : public THolder<BIGNUM, BN_new, BN_clear_free> {
- };
-
- class TBnCtx : public THolder<BN_CTX, BN_CTX_new, BN_CTX_free> {
- };
-}