aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl/holders/ut/evp_ut.cpp
blob: 7aeec7594cdccd1005525cc5f7151bfb198c4215 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "evp.h" 
 
#include <library/cpp/testing/unittest/registar.h>
 
Y_UNIT_TEST_SUITE(Evp) { 
    Y_UNIT_TEST(Cipher) { 
        NOpenSSL::TEvpCipherCtx ctx; 
        UNIT_ASSERT(ctx); 
    } 
 
    Y_UNIT_TEST(Md) { 
        NOpenSSL::TEvpMdCtx ctx; 
        UNIT_ASSERT(ctx); 
    } 
}