| 13 | } |
| 14 | |
| 15 | void hmac_update(crypto_auth_hmacsha256_state *state, |
| 16 | const void *src, size_t slen) |
| 17 | { |
| 18 | crypto_auth_hmacsha256_update(state, memcheck(src, slen), slen); |
| 19 | } |
| 20 | |
| 21 | void hmac_done(crypto_auth_hmacsha256_state *state, |
| 22 | struct hmac *hmac) |
no outgoing calls
no test coverage detected