HMAC_SHA384_CTX
hmac_sha384_init(HMAC_SHA384_CTX(desc), HMAC_SHA384_KEY(desc->tfm));
hmac_sha384_update(HMAC_SHA384_CTX(desc), data, len);
hmac_sha384_final(HMAC_SHA384_CTX(desc), out);
return __crypto_sha512_export(&HMAC_SHA384_CTX(desc)->ctx.sha_ctx, out);
struct hmac_sha384_ctx *ctx = HMAC_SHA384_CTX(desc);
return __crypto_sha512_export_core(&HMAC_SHA384_CTX(desc)->ctx.sha_ctx,
struct hmac_sha384_ctx *ctx = HMAC_SHA384_CTX(desc);