aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl/holders/bn.h
blob: a1a5eb3435ea33c66b1ffdccce1c5a7a439a7140 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once 
 
#include "holder.h" 
 
#include <contrib/libs/openssl/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> { 
    }; 
}