aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl/holders/ut/evp_ut.cpp
blob: 49463cd9c3fd89870a5e0669024f17a6462a2632 (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);
    }
}