evp_ut.cpp 280 B

123456789101112131415
  1. #include "evp.h"
  2. #include <library/cpp/testing/unittest/registar.h>
  3. Y_UNIT_TEST_SUITE(Evp) {
  4. Y_UNIT_TEST(Cipher) {
  5. NOpenSSL::TEvpCipherCtx ctx;
  6. UNIT_ASSERT(ctx);
  7. }
  8. Y_UNIT_TEST(Md) {
  9. NOpenSSL::TEvpMdCtx ctx;
  10. UNIT_ASSERT(ctx);
  11. }
  12. }