Searched refs:crypto_aead_ivsize (Results 1 – 14 of 14) sorted by relevance
/linux-4.1.27/net/ipv6/ |
D | esp6.c | 71 len += crypto_aead_ivsize(aead); in esp_alloc_tmp() 94 return crypto_aead_ivsize(aead) ? in esp_tmp_iv() 104 req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead), in esp_tmp_givreq() 114 req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead), in esp_tmp_req() 235 esph->enc_data + crypto_aead_ivsize(aead) - skb->data, in esp6_output() 273 int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead); in esp_input_done2() 327 int elen = skb->len - sizeof(*esph) - crypto_aead_ivsize(aead); in esp6_input() 339 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead))) { in esp6_input() 386 skb_to_sgvec(skb, sg, sizeof(*esph) + crypto_aead_ivsize(aead), elen); in esp6_input() 598 crypto_aead_ivsize(aead); in esp6_init_state()
|
/linux-4.1.27/net/ipv4/ |
D | esp4.c | 44 len += crypto_aead_ivsize(aead); in esp_alloc_tmp() 66 return crypto_aead_ivsize(aead) ? in esp_tmp_iv() 76 req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead), in esp_tmp_givreq() 86 req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead), in esp_tmp_req() 243 esph->enc_data + crypto_aead_ivsize(aead) - skb->data, in esp_output() 282 int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead); in esp_input_done2() 378 int elen = skb->len - sizeof(*esph) - crypto_aead_ivsize(aead); in esp_input() 390 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead))) in esp_input() 432 skb_to_sgvec(skb, sg, sizeof(*esph) + crypto_aead_ivsize(aead), elen); in esp_input() 653 crypto_aead_ivsize(aead); in esp_init_state()
|
/linux-4.1.27/crypto/ |
D | seqiv.c | 70 memcpy(req->areq.iv, subreq->iv, crypto_aead_ivsize(geniv)); in seqiv_aead_complete2() 161 ivsize = crypto_aead_ivsize(geniv); in seqiv_aead_givencrypt() 224 crypto_aead_ivsize(geniv)); in seqiv_aead_givencrypt_first()
|
D | algif_aead.c | 172 crypto_aead_ivsize(crypto_aead_reqtfm(&ctx->aead_req)); in aead_sendmsg() 588 unsigned int ivlen = crypto_aead_ivsize( in aead_sock_destruct() 602 unsigned int ivlen = crypto_aead_ivsize(private); in aead_accept_parent()
|
D | authenc.c | 333 unsigned int ivsize = crypto_aead_ivsize(authenc); in crypto_authenc_genicv() 412 memcpy(iv, req->iv, crypto_aead_ivsize(authenc)); in crypto_authenc_encrypt() 490 unsigned int ivsize = crypto_aead_ivsize(authenc); in crypto_authenc_iverify()
|
D | authencesn.c | 398 unsigned int ivsize = crypto_aead_ivsize(authenc_esn); in crypto_authenc_esn_genicv() 488 memcpy(iv, req->iv, crypto_aead_ivsize(authenc_esn)); in crypto_authenc_esn_encrypt() 568 unsigned int ivsize = crypto_aead_ivsize(authenc_esn); in crypto_authenc_esn_iverify()
|
D | blkcipher.c | 368 walk->ivsize = crypto_aead_ivsize(tfm); in blkcipher_aead_walk_virt_block()
|
D | tcrypt.c | 360 iv_len = crypto_aead_ivsize(tfm); in test_aead_speed()
|
D | testmgr.c | 503 iv_len = crypto_aead_ivsize(tfm); in __test_aead()
|
/linux-4.1.27/drivers/crypto/ |
D | picoxcell_crypto.c | 327 unsigned ivsize = crypto_aead_ivsize(crypto_aead_reqtfm(areq)); in spacc_aead_make_ddts() 624 assoc_len += crypto_aead_ivsize(crypto_aead_reqtfm(aead_req)); in spacc_aead_submit() 625 proc_len += crypto_aead_ivsize(crypto_aead_reqtfm(aead_req)); in spacc_aead_submit() 689 unsigned ivsize = crypto_aead_ivsize(crypto_aead_reqtfm(req)); in spacc_aead_setup() 741 size_t ivsize = crypto_aead_ivsize(tfm); in spacc_aead_givencrypt()
|
D | ixp4xx_crypto.c | 994 unsigned ivsize = crypto_aead_ivsize(tfm); in aead_perform() 1175 unsigned ivsize = crypto_aead_ivsize(crypto_aead_reqtfm(req)); in aead_encrypt() 1182 unsigned ivsize = crypto_aead_ivsize(crypto_aead_reqtfm(req)); in aead_decrypt() 1191 unsigned len, ivsize = crypto_aead_ivsize(tfm); in aead_givencrypt()
|
D | talitos.c | 951 unsigned int ivsize = crypto_aead_ivsize(aead); in ipsec_esp() 1222 unsigned int ivsize = crypto_aead_ivsize(authenc); in aead_edesc_alloc() 1313 memcpy(req->giv, ctx->iv, crypto_aead_ivsize(authenc)); in aead_givencrypt()
|
/linux-4.1.27/drivers/crypto/caam/ |
D | caamalg.c | 2158 int ivsize = crypto_aead_ivsize(aead); in aead_unmap() 2190 int ivsize = crypto_aead_ivsize(aead); in aead_encrypt_done() 2229 int ivsize = crypto_aead_ivsize(aead); in aead_decrypt_done() 2352 int ivsize = crypto_aead_ivsize(aead); in init_aead_job() 2437 int ivsize = crypto_aead_ivsize(aead); in init_aead_giv_job() 2626 int ivsize = crypto_aead_ivsize(aead); in aead_edesc_alloc() 2853 int ivsize = crypto_aead_ivsize(aead); in aead_giv_edesc_alloc()
|
/linux-4.1.27/include/linux/ |
D | crypto.h | 1275 static inline unsigned int crypto_aead_ivsize(struct crypto_aead *tfm) in crypto_aead_ivsize() function
|