HMAC_SHA224_CTX
hmac_sha224_init(HMAC_SHA224_CTX(desc), HMAC_SHA224_KEY(desc->tfm));
hmac_sha224_update(HMAC_SHA224_CTX(desc), data, len);
hmac_sha224_final(HMAC_SHA224_CTX(desc), out);
return __crypto_sha256_export(&HMAC_SHA224_CTX(desc)->ctx.sha_ctx, out);
struct hmac_sha224_ctx *ctx = HMAC_SHA224_CTX(desc);
return __crypto_sha256_export_core(&HMAC_SHA224_CTX(desc)->ctx.sha_ctx,
struct hmac_sha224_ctx *ctx = HMAC_SHA224_CTX(desc);