hmac_sha1_ctx
#define HMAC_SHA1_CTX(desc) ((struct hmac_sha1_ctx *)shash_desc_ctx(desc))
struct hmac_sha1_ctx *ctx = HMAC_SHA1_CTX(desc);
struct hmac_sha1_ctx *ctx = HMAC_SHA1_CTX(desc);
.descsize = sizeof(struct hmac_sha1_ctx),
void hmac_sha1_init(struct hmac_sha1_ctx *ctx, const struct hmac_sha1_key *key);
void hmac_sha1_init_usingrawkey(struct hmac_sha1_ctx *ctx,
static inline void hmac_sha1_update(struct hmac_sha1_ctx *ctx,
void hmac_sha1_final(struct hmac_sha1_ctx *ctx,
void hmac_sha1_init(struct hmac_sha1_ctx *ctx, const struct hmac_sha1_key *key)
void hmac_sha1_init_usingrawkey(struct hmac_sha1_ctx *ctx,
void hmac_sha1_final(struct hmac_sha1_ctx *ctx, u8 out[SHA1_DIGEST_SIZE])
struct hmac_sha1_ctx ctx;
struct hmac_sha1_ctx ctx;
#define HMAC_CTX hmac_sha1_ctx
struct hmac_sha1_ctx hmac_ctx;