| 449 | } |
| 450 | |
| 451 | void |
| 452 | hmac_init_opad(const struct auth_hash *axf, const char *key, int klen, |
| 453 | void *auth_ctx) |
| 454 | { |
| 455 | |
| 456 | hmac_init_pad(axf, key, klen, auth_ctx, HMAC_OPAD_VAL); |
| 457 | } |
| 458 | |
| 459 | static void |
| 460 | crypto_destroy(void) |
no test coverage detected