aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl/holders/hmac.h
blob: 3aa820a569830577c773e6200d49c82ebad575b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once 
 
#include "holder.h" 
 
#include <contrib/libs/openssl/include/openssl/hmac.h> 
 
namespace NOpenSSL { 
    class THmacCtx : public THolder<HMAC_CTX, HMAC_CTX_new, HMAC_CTX_free> { 
    }; 
}