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