hmac_context
ATTRIBUTE_WARN_UNUSED_RET int hmac_init(hmac_context *ctx, const u8 *hmackey, u32 hmackey_len, hash_alg_type hash_type);
ATTRIBUTE_WARN_UNUSED_RET int hmac_update(hmac_context *ctx, const u8 *input, u32 ilen);
ATTRIBUTE_WARN_UNUSED_RET int hmac_finalize(hmac_context *ctx, u8 *output, u8 *outlen);
int hmac_finalize(hmac_context *ctx, u8 *output, u8 *outlen)
IGNORE_RET_VAL(local_memset(ctx, 0, sizeof(hmac_context)));
hmac_context ctx;
IGNORE_RET_VAL(local_memset(&ctx, 0, sizeof(hmac_context)));
hmac_context ctx;
int hmac_init(hmac_context *ctx, const u8 *hmackey, u32 hmackey_len,
IGNORE_RET_VAL(local_memset(&ctx, 0, sizeof(hmac_context)));
int hmac_update(hmac_context *ctx, const u8 *input, u32 ilen)
hmac_context hmac_ctx;