Symbol: hmac_ctx
crypto/hmac.c
108
const struct hmac_ctx *tctx = crypto_shash_ctx(pdesc->tfm);
crypto/hmac.c
117
const struct hmac_ctx *tctx = crypto_shash_ctx(pdesc->tfm);
crypto/hmac.c
137
const struct hmac_ctx *tctx = crypto_shash_ctx(parent);
crypto/hmac.c
151
struct hmac_ctx *tctx = crypto_shash_ctx(parent);
crypto/hmac.c
163
struct hmac_ctx *sctx = crypto_shash_ctx(src);
crypto/hmac.c
164
struct hmac_ctx *dctx = crypto_shash_ctx(dst);
crypto/hmac.c
177
struct hmac_ctx *tctx = crypto_shash_ctx(parent);
crypto/hmac.c
224
inst->alg.base.cra_ctxsize = sizeof(struct hmac_ctx) + (ss * 2);
crypto/hmac.c
41
struct hmac_ctx *tctx = crypto_shash_ctx(parent);
crypto/hmac.c
92
const struct hmac_ctx *tctx = crypto_shash_ctx(pdesc->tfm);
drivers/crypto/chelsio/chcr_algo.c
108
static inline struct hmac_ctx *HMAC_CTX(struct chcr_context *ctx)
drivers/crypto/chelsio/chcr_algo.c
1532
struct hmac_ctx *hmacctx = HMAC_CTX(ctx);
drivers/crypto/chelsio/chcr_algo.c
2170
struct hmac_ctx *hmacctx = HMAC_CTX(h_ctx(tfm));
drivers/crypto/chelsio/chcr_algo.c
2251
struct hmac_ctx *hmacctx = HMAC_CTX(h_ctx(rtfm));
drivers/crypto/chelsio/chcr_algo.c
4292
#define SZ_AHASH_H_CTX (sizeof(struct chcr_context) + sizeof(struct hmac_ctx))
drivers/crypto/chelsio/chcr_crypto.h
250
struct hmac_ctx hmacctx;
fs/smb/client/cifsencrypt.c
263
struct hmac_md5_ctx hmac_ctx;
fs/smb/client/cifsencrypt.c
271
hmac_md5_init_usingrawkey(&hmac_ctx, nt_hash, CIFS_NTHASH_SIZE);
fs/smb/client/cifsencrypt.c
286
hmac_md5_update(&hmac_ctx, (const u8 *)user, 2 * len);
fs/smb/client/cifsencrypt.c
299
hmac_md5_update(&hmac_ctx, (const u8 *)domain, 2 * len);
fs/smb/client/cifsencrypt.c
310
hmac_md5_update(&hmac_ctx, (const u8 *)server, 2 * len);
fs/smb/client/cifsencrypt.c
314
hmac_md5_final(&hmac_ctx, ntlmv2_hash);
fs/smb/client/smb2transport.c
221
struct hmac_sha256_ctx hmac_ctx;
fs/smb/client/smb2transport.c
236
hmac_sha256_init_usingrawkey(&hmac_ctx, key, sizeof(key));
fs/smb/client/smb2transport.c
247
hmac_sha256_update(&hmac_ctx, iov[0].iov_base, iov[0].iov_len);
fs/smb/client/smb2transport.c
254
&(struct cifs_calc_sig_ctx){ .hmac = &hmac_ctx });
fs/smb/client/smb2transport.c
271
struct hmac_sha256_ctx hmac_ctx;
fs/smb/client/smb2transport.c
282
hmac_sha256_init_usingrawkey(&hmac_ctx, ses->auth_key.response,
fs/smb/client/smb2transport.c
284
hmac_sha256_update(&hmac_ctx, i, 4);
fs/smb/client/smb2transport.c
285
hmac_sha256_update(&hmac_ctx, label.iov_base, label.iov_len);
fs/smb/client/smb2transport.c
286
hmac_sha256_update(&hmac_ctx, &zero, 1);
fs/smb/client/smb2transport.c
287
hmac_sha256_update(&hmac_ctx, context.iov_base, context.iov_len);
fs/smb/client/smb2transport.c
291
hmac_sha256_update(&hmac_ctx, L256, 4);
fs/smb/client/smb2transport.c
293
hmac_sha256_update(&hmac_ctx, L128, 4);
fs/smb/client/smb2transport.c
295
hmac_sha256_final(&hmac_ctx, prfhash);
security/keys/trusted-keys/trusted_tpm1.c
105
hmac_sha1_init_usingrawkey(&hmac_ctx, key, keylen);
security/keys/trusted-keys/trusted_tpm1.c
117
hmac_sha1_update(&hmac_ctx, data, dlen);
security/keys/trusted-keys/trusted_tpm1.c
121
hmac_sha1_final(&hmac_ctx, digest);
security/keys/trusted-keys/trusted_tpm1.c
99
struct hmac_sha1_ctx hmac_ctx;