| 77 | }; |
| 78 | |
| 79 | Hmac_sha1_state::Hmac_sha1_state (const unsigned char* key, size_t key_len) |
| 80 | : impl(new Hmac_impl) |
| 81 | { |
| 82 | |
| 83 | impl->ctx = HMAC_CTX_new(); |
| 84 | HMAC_Init_ex(impl->ctx, key, key_len, EVP_sha1(), nullptr); |
| 85 | } |
| 86 | |
| 87 | Hmac_sha1_state::~Hmac_sha1_state () |
| 88 | { |
nothing calls this directly
no outgoing calls
no test coverage detected