blob: 0f8c0aed011b69888595806cb9458a78baa09901 (
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);
}
}
|