| 6 | #include <wire/wire.h> |
| 7 | |
| 8 | void hmac_start(crypto_auth_hmacsha256_state *state, |
| 9 | const void *key, size_t klen) |
| 10 | { |
| 11 | crypto_auth_hmacsha256_init(state, memcheck(key, klen), klen); |
| 12 | } |
| 13 | |
| 14 | void hmac_update(crypto_auth_hmacsha256_state *state, |
| 15 | const void *src, size_t slen) |
no outgoing calls
no test coverage detected