Symbol: crypto_shash_setkey
crypto/ahash.c
297
err = crypto_shash_setkey(shash, key, keylen);
crypto/cryptd.c
471
return crypto_shash_setkey(child, key, keylen);
crypto/kdf_sp800108.c
92
return crypto_shash_setkey(kmd, key, keylen);
crypto/krb5/krb5_api.c
292
ret = crypto_shash_setkey(ci, Kc->data, Kc->len);
crypto/krb5/rfc6803_camellia.c
156
ret = crypto_shash_setkey(shash, Kp.data, Kp.len);
crypto/krb5/rfc6803_camellia.c
43
ret = crypto_shash_setkey(shash, key->data, key->len);
crypto/krb5/rfc8009_aes2.c
51
ret = crypto_shash_setkey(shash, key->data, key->len);
crypto/shash.c
65
EXPORT_SYMBOL_GPL(crypto_shash_setkey);
crypto/testmgr.c
1305
err = do_setkey(crypto_shash_setkey, tfm, vec->key, vec->ksize,
drivers/block/drbd/drbd_receiver.c
5205
rv = crypto_shash_setkey(connection->cram_hmac_tfm, (u8 *)secret, key_len);
drivers/crypto/bcm/cipher.c
2045
ret = crypto_shash_setkey(hash, ctx->authkey,
drivers/crypto/bcm/util.c
236
rc = crypto_shash_setkey(hash, key, key_len);
drivers/crypto/omap-sham.c
1291
err = crypto_shash_setkey(tctx->fallback, key, keylen);
drivers/crypto/stm32/stm32-hash.c
938
ret = crypto_shash_setkey(ctx->xtfm, ctx->key, ctx->keylen);
drivers/crypto/tegra/tegra-se-aes.c
1838
crypto_shash_setkey(ctx->fallback_tfm, key, keylen);
drivers/md/dm-integrity.c
4369
r = crypto_shash_setkey(*shash, a->key, a->key_size);
fs/ubifs/auth.c
332
err = crypto_shash_setkey(c->hmac_tfm, ukp->data, ukp->datalen);
include/crypto/hash.h
880
int crypto_shash_setkey(struct crypto_shash *tfm, const u8 *key,
security/integrity/evm/evm_crypto.c
111
rc = crypto_shash_setkey(tmp_tfm, evmkey, evmkey_len);