hmac_ut.cpp 186 B

12345678910
  1. #include "hmac.h"
  2. #include <library/cpp/testing/unittest/registar.h>
  3. Y_UNIT_TEST_SUITE(Hmac) {
  4. Y_UNIT_TEST(Ctx) {
  5. NOpenSSL::THmacCtx ctx;
  6. UNIT_ASSERT(ctx);
  7. }
  8. }