Symbol: crypto_aead_setauthsize
crypto/aead.c
82
EXPORT_SYMBOL_GPL(crypto_aead_setauthsize);
crypto/algif_aead.c
374
return crypto_aead_setauthsize(private, authsize);
crypto/ccm.c
595
return crypto_aead_setauthsize(ctx->child, authsize);
crypto/cryptd.c
740
return crypto_aead_setauthsize(child, authsize);
crypto/essiv.c
131
return crypto_aead_setauthsize(tctx->u.aead, authsize);
crypto/gcm.c
711
return crypto_aead_setauthsize(ctx->child, authsize);
crypto/gcm.c
917
return crypto_aead_setauthsize(ctx->child, authsize);
crypto/geniv.c
31
return crypto_aead_setauthsize(ctx->child, authsize);
crypto/krb5/krb5_api.c
182
ret = crypto_aead_setauthsize(ci, krb5->cksum_len);
crypto/pcrypt.c
55
return crypto_aead_setauthsize(ctx->child, authsize);
crypto/simd.c
285
return crypto_aead_setauthsize(child, authsize);
crypto/tcrypt.c
284
ret = crypto_aead_setauthsize(tfm, authsize);
crypto/tcrypt.c
573
ret = crypto_aead_setauthsize(tfm, authsize);
crypto/testmgr.c
2074
err = crypto_aead_setauthsize(tfm, authsize);
crypto/testmgr.c
2408
vec->setauthsize_error = crypto_aead_setauthsize(tfm, authsize);
drivers/crypto/amcc/crypto4xx_alg.c
472
return crypto_aead_setauthsize(ctx->sw_cipher.aead, authsize);
drivers/crypto/bcm/cipher.c
2993
ret = crypto_aead_setauthsize(ctx->fallback_cipher, authsize);
drivers/crypto/chelsio/chcr_algo.c
3194
return crypto_aead_setauthsize(aeadctx->sw_cipher, authsize);
drivers/crypto/chelsio/chcr_algo.c
3231
return crypto_aead_setauthsize(aeadctx->sw_cipher, authsize);
drivers/crypto/chelsio/chcr_algo.c
3268
return crypto_aead_setauthsize(aeadctx->sw_cipher, authsize);
drivers/crypto/chelsio/chcr_algo.c
3292
return crypto_aead_setauthsize(aeadctx->sw_cipher, authsize);
drivers/crypto/chelsio/chcr_algo.c
3332
return crypto_aead_setauthsize(aeadctx->sw_cipher, authsize);
drivers/crypto/hisilicon/sec2/sec_crypto.c
1383
return crypto_aead_setauthsize(a_ctx->fallback_aead_tfm, authsize);
drivers/crypto/inside-secure/safexcel_cipher.c
3242
return crypto_aead_setauthsize(ctx->fback, authsize);
drivers/crypto/intel/keembay/keembay-ocs-aes-core.c
654
rc = crypto_aead_setauthsize(tctx->sw_cipher.aead,
drivers/crypto/qce/aead.c
664
return crypto_aead_setauthsize(ctx->fallback, authsize);
drivers/crypto/sa2ul.c
1849
return crypto_aead_setauthsize(ctx->fallback.aead, authsize);
drivers/crypto/starfive/jh7110-aes.c
903
return crypto_aead_setauthsize(ctx->aead_fbk, authsize);
drivers/crypto/starfive/jh7110-aes.c
924
return crypto_aead_setauthsize(ctx->aead_fbk, authsize);
drivers/crypto/xilinx/zynqmp-aes-gcm.c
580
return tfm_ctx->fbk_cipher ? crypto_aead_setauthsize(tfm_ctx->fbk_cipher, authsize) : 0;
drivers/md/dm-crypt.c
1188
if (crypto_aead_setauthsize(any_tfm_aead(cc), cc->integrity_tag_size)) {
drivers/net/macsec.c
1382
ret = crypto_aead_setauthsize(tfm, icv_len);
drivers/net/ovpn/crypto_aead.c
269
ret = crypto_aead_setauthsize(aead, OVPN_AUTH_TAG_SIZE);
drivers/net/wireless/intel/ipw2x00/libipw_crypto_ccmp.c
361
if (crypto_aead_setauthsize(data->tfm, CCMP_MIC_LEN) ||
fs/smb/client/smb2ops.c
4477
rc = crypto_aead_setauthsize(tfm, SMB2_SIGNATURE_SIZE);
fs/smb/server/auth.c
875
rc = crypto_aead_setauthsize(tfm, SMB2_SIGNATURE_SIZE);
include/crypto/aead.h
400
int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize);
include/crypto/aead.h
405
return crypto_aead_setauthsize(&tfm->base, authsize);
net/ceph/messenger_v2.c
757
ret = crypto_aead_setauthsize(con->v2.gcm_tfm, CEPH_GCM_TAG_LEN);
net/ipv4/esp4.c
1000
err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8);
net/ipv4/esp4.c
1086
err = crypto_aead_setauthsize(
net/ipv6/esp6.c
1037
err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8);
net/ipv6/esp6.c
1123
err = crypto_aead_setauthsize(
net/mac80211/aead_api.c
99
err = crypto_aead_setauthsize(tfm, mic_len);
net/mac80211/aes_gmac.c
83
err = crypto_aead_setauthsize(tfm, IEEE80211_GMAC_MIC_LEN);
net/mac802154/llsec.c
137
if (crypto_aead_setauthsize(key->tfm[i], authsizes[i]))
net/tipc/crypto.c
556
err = crypto_aead_setauthsize(tfm, TIPC_AES_GCM_TAG_SIZE);
net/tls/tls_device_fallback.c
465
rc = crypto_aead_setauthsize(offload_ctx->aead_send, cipher_desc->tag);
net/tls/tls_sw.c
2862
rc = crypto_aead_setauthsize(*aead, prot->tag_size);
security/keys/trusted-keys/trusted_dcp.c
144
ret = crypto_aead_setauthsize(aead, DCP_BLOB_AUTHLEN);