/linux-4.1.27/crypto/ |
D | eseqiv.c | 81 unsigned int ivsize; in eseqiv_givencrypt() local 99 ivsize = crypto_ablkcipher_ivsize(geniv); in eseqiv_givencrypt() 101 if (vsrc != giv + ivsize && vdst != giv + ivsize) { in eseqiv_givencrypt() 112 sg_set_buf(reqctx->src, giv, ivsize); in eseqiv_givencrypt() 113 scatterwalk_crypto_chain(reqctx->src, osrc, vsrc == giv + ivsize, 2); in eseqiv_givencrypt() 118 sg_set_buf(reqctx->dst, giv, ivsize); in eseqiv_givencrypt() 119 scatterwalk_crypto_chain(reqctx->dst, odst, vdst == giv + ivsize, 2); in eseqiv_givencrypt() 125 req->creq.nbytes + ivsize, in eseqiv_givencrypt() 128 memcpy(req->creq.info, ctx->salt, ivsize); in eseqiv_givencrypt() 130 len = ivsize; in eseqiv_givencrypt() [all …]
|
D | seqiv.c | 85 unsigned int ivsize) in seqiv_geniv() argument 87 unsigned int len = ivsize; in seqiv_geniv() 89 if (ivsize > sizeof(u64)) { in seqiv_geniv() 90 memset(info, 0, ivsize - sizeof(u64)); in seqiv_geniv() 94 memcpy(info + ivsize - len, &seq, len); in seqiv_geniv() 95 crypto_xor(info, ctx->salt, ivsize); in seqiv_geniv() 106 unsigned int ivsize; in seqiv_givencrypt() local 115 ivsize = crypto_ablkcipher_ivsize(geniv); in seqiv_givencrypt() 119 info = kmalloc(ivsize, req->creq.base.flags & in seqiv_givencrypt() 134 seqiv_geniv(ctx, info, req->seq, ivsize); in seqiv_givencrypt() [all …]
|
D | ablkcipher.c | 142 memcpy(req->info, walk->iv, tfm->crt_ablkcipher.ivsize); in ablkcipher_walk_done() 194 unsigned int ivsize = tfm->crt_ablkcipher.ivsize; in ablkcipher_copy_iv() local 196 unsigned int size = aligned_bs * 2 + ivsize + max(aligned_bs, ivsize) - in ablkcipher_copy_iv() 208 iv = ablkcipher_get_spot(iv, ivsize); in ablkcipher_copy_iv() 210 walk->iv = memcpy(iv, walk->iv, ivsize); in ablkcipher_copy_iv() 368 if (alg->ivsize > PAGE_SIZE / 8) in crypto_init_ablkcipher_ops() 374 if (!alg->ivsize) { in crypto_init_ablkcipher_ops() 379 crt->ivsize = alg->ivsize; in crypto_init_ablkcipher_ops() 396 rblkcipher.ivsize = alg->cra_ablkcipher.ivsize; in crypto_ablkcipher_report() 425 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize); in crypto_ablkcipher_show() [all …]
|
D | blkcipher.c | 136 memcpy(desc->info, walk->iv, walk->ivsize); in blkcipher_walk_done() 280 walk->ivsize + max(aligned_bs, walk->ivsize) - in blkcipher_copy_iv() 292 iv = blkcipher_get_spot(iv, walk->ivsize); in blkcipher_copy_iv() 294 walk->iv = memcpy(iv, walk->iv, walk->ivsize); in blkcipher_copy_iv() 304 walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); in blkcipher_walk_virt() 316 walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); in blkcipher_walk_phys() 354 walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); in blkcipher_walk_virt_block() 368 walk->ivsize = crypto_aead_ivsize(tfm); in blkcipher_aead_walk_virt_block() 452 cipher->ivsize) { in crypto_blkcipher_ctxsize() 454 len += cipher->ivsize; in crypto_blkcipher_ctxsize() [all …]
|
D | aead.c | 98 if (max(alg->maxauthsize, alg->ivsize) > PAGE_SIZE / 8) in crypto_init_aead_ops() 108 crt->ivsize = alg->ivsize; in crypto_init_aead_ops() 125 raead.ivsize = aead->ivsize; in crypto_aead_report() 152 seq_printf(m, "ivsize : %u\n", aead->ivsize); in crypto_aead_show() 182 if (max(alg->maxauthsize, alg->ivsize) > PAGE_SIZE / 8) in crypto_init_nivaead_ops() 188 if (!alg->ivsize) { in crypto_init_nivaead_ops() 193 crt->ivsize = alg->ivsize; in crypto_init_nivaead_ops() 210 raead.ivsize = aead->ivsize; in crypto_nivaead_report() 238 seq_printf(m, "ivsize : %u\n", aead->ivsize); in crypto_nivaead_show() 312 if (!alg->cra_aead.ivsize) in aead_geniv_alloc() [all …]
|
D | chainiv.c | 53 unsigned int ivsize; in chainiv_givencrypt() local 66 ivsize = crypto_ablkcipher_ivsize(geniv); in chainiv_givencrypt() 68 memcpy(req->giv, ctx->iv, ivsize); in chainiv_givencrypt() 69 memcpy(subreq->info, ctx->iv, ivsize); in chainiv_givencrypt() 75 memcpy(ctx->iv, subreq->info, ivsize); in chainiv_givencrypt() 166 unsigned int ivsize = crypto_ablkcipher_ivsize(geniv); in async_chainiv_givencrypt_tail() local 168 memcpy(req->giv, ctx->iv, ivsize); in async_chainiv_givencrypt_tail() 169 memcpy(subreq->info, ctx->iv, ivsize); in async_chainiv_givencrypt_tail() 175 memcpy(ctx->iv, subreq->info, ivsize); in async_chainiv_givencrypt_tail() 324 inst->alg.cra_ctxsize += inst->alg.cra_ablkcipher.ivsize; in chainiv_alloc()
|
D | authenc.c | 333 unsigned int ivsize = crypto_aead_ivsize(authenc); in crypto_authenc_genicv() local 343 if (ivsize) { in crypto_authenc_genicv() 345 sg_set_buf(cipher, iv, ivsize); in crypto_authenc_genicv() 346 scatterwalk_crypto_chain(cipher, dst, vdst == iv + ivsize, 2); in crypto_authenc_genicv() 348 cryptlen += ivsize; in crypto_authenc_genicv() 490 unsigned int ivsize = crypto_aead_ivsize(authenc); in crypto_authenc_iverify() local 498 if (ivsize) { in crypto_authenc_iverify() 500 sg_set_buf(cipher, iv, ivsize); in crypto_authenc_iverify() 501 scatterwalk_crypto_chain(cipher, src, vsrc == iv + ivsize, 2); in crypto_authenc_iverify() 503 cryptlen += ivsize; in crypto_authenc_iverify() [all …]
|
D | authencesn.c | 398 unsigned int ivsize = crypto_aead_ivsize(authenc_esn); in crypto_authenc_esn_genicv() local 407 if (ivsize) { in crypto_authenc_esn_genicv() 409 sg_set_buf(cipher, iv, ivsize); in crypto_authenc_esn_genicv() 410 scatterwalk_crypto_chain(cipher, dst, vdst == iv + ivsize, 2); in crypto_authenc_esn_genicv() 412 cryptlen += ivsize; in crypto_authenc_esn_genicv() 568 unsigned int ivsize = crypto_aead_ivsize(authenc_esn); in crypto_authenc_esn_iverify() local 575 if (ivsize) { in crypto_authenc_esn_iverify() 577 sg_set_buf(cipher, iv, ivsize); in crypto_authenc_esn_iverify() 578 scatterwalk_crypto_chain(cipher, src, vsrc == iv + ivsize, 2); in crypto_authenc_esn_iverify() 580 cryptlen += ivsize; in crypto_authenc_esn_iverify() [all …]
|
D | algboss.c | 254 CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize : in cryptomgr_schedule_test() 255 alg->cra_ablkcipher.ivsize)) || in cryptomgr_schedule_test() 257 alg->cra_type == &crypto_nivaead_type && alg->cra_aead.ivsize)) in cryptomgr_schedule_test()
|
D | ctr.c | 215 inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize; in crypto_ctr_alloc() 373 if (alg->cra_ablkcipher.ivsize != CTR_RFC3686_BLOCK_SIZE) in crypto_rfc3686_alloc() 397 inst->alg.cra_ablkcipher.ivsize = CTR_RFC3686_IV_SIZE; in crypto_rfc3686_alloc()
|
D | algif_aead.c | 171 unsigned ivsize = in aead_sendmsg() local 197 if (con.iv && con.iv->ivlen != ivsize) in aead_sendmsg() 208 memcpy(ctx->iv, con.iv->iv, ivsize); in aead_sendmsg()
|
D | ccm.c | 530 if (ctr->cra_ablkcipher.ivsize != 16) in crypto_ccm_alloc_common() 548 inst->alg.cra_aead.ivsize = 16; in crypto_ccm_alloc_common() 783 if (alg->cra_aead.ivsize != 16) in crypto_rfc4309_alloc() 805 inst->alg.cra_aead.ivsize = 8; in crypto_rfc4309_alloc()
|
D | crypto_null.c | 133 .ivsize = NULL_IV_SIZE,
|
D | gcm.c | 745 if (ctr->cra_ablkcipher.ivsize != 16) in crypto_gcm_alloc_common() 768 inst->alg.cra_aead.ivsize = 16; in crypto_gcm_alloc_common() 1000 if (alg->cra_aead.ivsize != 16) in crypto_rfc4106_alloc() 1022 inst->alg.cra_aead.ivsize = 8; in crypto_rfc4106_alloc() 1325 if (alg->cra_aead.ivsize != 16) in crypto_rfc4543_alloc() 1347 inst->alg.cra_aead.ivsize = 8; in crypto_rfc4543_alloc()
|
D | cryptd.c | 367 inst->alg.cra_ablkcipher.ivsize = alg->cra_blkcipher.ivsize; in cryptd_create_blkcipher() 783 inst->alg.cra_aead.ivsize = alg->cra_aead.ivsize; in cryptd_create_aead()
|
D | pcrypt.c | 364 inst->alg.cra_aead.ivsize = alg->cra_aead.ivsize; in pcrypt_alloc_aead()
|
D | algif_skcipher.c | 311 unsigned ivsize = crypto_ablkcipher_ivsize(tfm); in skcipher_sendmsg() local 337 if (con.iv && con.iv->ivlen != ivsize) in skcipher_sendmsg() 350 memcpy(ctx->iv, con.iv->iv, ivsize); in skcipher_sendmsg()
|
D | salsa20_generic.c | 231 .ivsize = SALSA20_IV_SIZE,
|
D | cbc.c | 246 inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize; in crypto_cbc_alloc()
|
D | pcbc.c | 252 inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize; in crypto_pcbc_alloc()
|
D | xts.c | 317 inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize; in alloc()
|
D | cts.c | 309 inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize; in crypto_cts_alloc()
|
D | lrw.c | 355 inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize; in alloc()
|
/linux-4.1.27/drivers/crypto/caam/ |
D | caamalg.c | 149 static inline void aead_append_ld_iv(u32 *desc, int ivsize, int ivoffset) in aead_append_ld_iv() argument 151 append_seq_load(desc, ivsize, LDST_CLASS_1_CCB | in aead_append_ld_iv() 155 (ivoffset << MOVE_OFFSET_SHIFT) | ivsize); in aead_append_ld_iv() 386 ctx->authsize + tfm->ivsize); in aead_null_set_sh_desc() 513 append_math_sub_imm_u32(desc, REG2, SEQINLEN, IMM, tfm->ivsize); in aead_set_sh_desc() 521 aead_append_ld_iv(desc, tfm->ivsize, ctx1_iv_off); in aead_set_sh_desc() 580 ctx->authsize + tfm->ivsize); in aead_set_sh_desc() 589 aead_append_ld_iv(desc, tfm->ivsize, ctx1_iv_off); in aead_set_sh_desc() 648 NFIFOENTRY_PTYPE_RND | (tfm->ivsize << NFIFOENTRY_DLEN_SHIFT); in aead_set_sh_desc() 655 (tfm->ivsize << MOVE_LEN_SHIFT)); in aead_set_sh_desc() [all …]
|
/linux-4.1.27/drivers/crypto/qce/ |
D | ablkcipher.c | 76 rctx->ivsize = crypto_ablkcipher_ivsize(ablkcipher); in qce_ablkcipher_async_req_handle() 266 unsigned int ivsize; member 277 .ivsize = AES_BLOCK_SIZE, 286 .ivsize = AES_BLOCK_SIZE, 295 .ivsize = AES_BLOCK_SIZE, 304 .ivsize = AES_BLOCK_SIZE, 313 .ivsize = 0, 322 .ivsize = DES_BLOCK_SIZE, 331 .ivsize = 0, 340 .ivsize = DES3_EDE_BLOCK_SIZE, [all …]
|
D | common.c | 180 static void qce_xts_swapiv(__be32 *dst, const u8 *src, unsigned int ivsize) in qce_xts_swapiv() argument 185 if (ivsize > QCE_AES_IV_LENGTH) in qce_xts_swapiv() 190 for (i = (QCE_AES_IV_LENGTH - ivsize), j = ivsize - 1; in qce_xts_swapiv() 328 unsigned int ivsize = rctx->ivsize; in qce_setup_regs_ablkcipher() local 364 qce_xts_swapiv(enciv, rctx->iv, ivsize); in qce_setup_regs_ablkcipher() 366 qce_cpu_to_be32p_array(enciv, rctx->iv, ivsize); in qce_setup_regs_ablkcipher()
|
D | cipher.h | 47 unsigned int ivsize; member
|
/linux-4.1.27/drivers/crypto/ |
D | ixp4xx_crypto.c | 870 unsigned ivsize = crypto_ablkcipher_ivsize(tfm); in ablk_perform() local 900 BUG_ON(ivsize && !req->info); in ablk_perform() 901 memcpy(crypt->iv, req->info, ivsize); in ablk_perform() 994 unsigned ivsize = crypto_aead_ivsize(tfm); in aead_perform() local 1032 crypt->auth_len = req->assoclen + ivsize + cryptlen; in aead_perform() 1033 BUG_ON(ivsize && !req->iv); in aead_perform() 1034 memcpy(crypt->iv, req->iv, ivsize); in aead_perform() 1049 sg_set_buf(&req_ctx->ivlist, iv, ivsize); in aead_perform() 1050 buf = chainup_buffers(dev, &req_ctx->ivlist, ivsize, buf, flags, in aead_perform() 1175 unsigned ivsize = crypto_aead_ivsize(crypto_aead_reqtfm(req)); in aead_encrypt() local [all …]
|
D | picoxcell_crypto.c | 327 unsigned ivsize = crypto_aead_ivsize(crypto_aead_reqtfm(areq)); in spacc_aead_make_ddts() local 364 iv_addr = dma_map_single(engine->dev, iv, ivsize, in spacc_aead_make_ddts() 378 ddt_set(src_ddt++, iv_addr, ivsize); in spacc_aead_make_ddts() 381 ddt_set(dst_ddt++, iv_addr, ivsize); in spacc_aead_make_ddts() 411 unsigned ivsize = alg->alg.cra_aead.ivsize; in spacc_aead_free_ddts() local 425 dma_unmap_single(engine->dev, req->giv_pa, ivsize, DMA_BIDIRECTIONAL); in spacc_aead_free_ddts() 608 ctx->cipher_key_len, aead_req->iv, alg->cra_aead.ivsize, in spacc_aead_submit() 689 unsigned ivsize = crypto_aead_ivsize(crypto_aead_reqtfm(req)); in spacc_aead_setup() local 692 dev_req->giv_len = ivsize; in spacc_aead_setup() 741 size_t ivsize = crypto_aead_ivsize(tfm); in spacc_aead_givencrypt() local [all …]
|
D | talitos.c | 951 unsigned int ivsize = crypto_aead_ivsize(aead); in ipsec_esp() local 960 desc->ptr[1].len = cpu_to_be16(areq->assoclen + ivsize); in ipsec_esp() 978 tbl_ptr->len = cpu_to_be16(ivsize); in ipsec_esp() 994 desc->ptr[2].len = cpu_to_be16(ivsize); in ipsec_esp() 997 dma_sync_single_for_device(dev, edesc->iv_dma, ivsize, DMA_TO_DEVICE); in ipsec_esp() 1079 map_single_talitos_ptr(dev, &desc->ptr[6], ivsize, ctx->iv, 0, in ipsec_esp() 1121 unsigned int ivsize, in talitos_edesc_alloc() argument 1138 if (ivsize) in talitos_edesc_alloc() 1139 iv_dma = dma_map_single(dev, iv, ivsize, DMA_TO_DEVICE); in talitos_edesc_alloc() 1195 dma_unmap_single(dev, iv_dma, ivsize, DMA_TO_DEVICE); in talitos_edesc_alloc() [all …]
|
D | atmel-tdes.c | 955 .ivsize = DES_BLOCK_SIZE, 976 .ivsize = DES_BLOCK_SIZE, 997 .ivsize = DES_BLOCK_SIZE, 1018 .ivsize = DES_BLOCK_SIZE, 1039 .ivsize = DES_BLOCK_SIZE, 1060 .ivsize = DES_BLOCK_SIZE, 1101 .ivsize = DES_BLOCK_SIZE, 1122 .ivsize = DES_BLOCK_SIZE, 1143 .ivsize = DES_BLOCK_SIZE, 1164 .ivsize = DES_BLOCK_SIZE, [all …]
|
D | hifn_795x.c | 658 unsigned int ivsize; member 1126 u8 *key, int keylen, u8 *iv, int ivsize, u16 mode) in hifn_setup_crypto_command() argument 1155 if (ivsize) { in hifn_setup_crypto_command() 1156 memcpy(buf_pos, iv, ivsize); in hifn_setup_crypto_command() 1157 buf_pos += ivsize; in hifn_setup_crypto_command() 1255 rctx->iv, rctx->ivsize, md); in hifn_setup_cmd_desc() 1585 if (rctx->iv && !rctx->ivsize && rctx->mode != ACRYPTO_MODE_ECB) in hifn_setup_session() 1637 dev->name, rctx->iv, rctx->ivsize, in hifn_setup_session() 1663 rctx.ivsize = 0; in hifn_test() 2102 unsigned ivsize; in hifn_setup_crypto_req() local [all …]
|
D | atmel-aes.c | 995 .ivsize = AES_BLOCK_SIZE, 1016 .ivsize = AES_BLOCK_SIZE, 1037 .ivsize = AES_BLOCK_SIZE, 1058 .ivsize = AES_BLOCK_SIZE, 1079 .ivsize = AES_BLOCK_SIZE, 1100 .ivsize = AES_BLOCK_SIZE, 1121 .ivsize = AES_BLOCK_SIZE, 1144 .ivsize = AES_BLOCK_SIZE,
|
D | n2_core.c | 1157 .ivsize = DES_BLOCK_SIZE, 1199 .ivsize = DES_BLOCK_SIZE, 1240 .ivsize = AES_BLOCK_SIZE, 1254 .ivsize = AES_BLOCK_SIZE,
|
D | omap-des.c | 819 .ivsize = DES_BLOCK_SIZE, 864 .ivsize = DES_BLOCK_SIZE,
|
D | padlock-aes.c | 496 .ivsize = AES_BLOCK_SIZE,
|
D | omap-aes.c | 872 .ivsize = AES_BLOCK_SIZE, 899 .ivsize = AES_BLOCK_SIZE,
|
D | geode-aes.c | 411 .ivsize = AES_BLOCK_SIZE,
|
D | s5p-sss.c | 633 .ivsize = AES_BLOCK_SIZE,
|
D | mxs-dcp.c | 824 .ivsize = AES_BLOCK_SIZE,
|
D | mv_cesa.c | 963 .ivsize = AES_BLOCK_SIZE,
|
D | sahara.c | 1309 .ivsize = AES_BLOCK_SIZE,
|
/linux-4.1.27/drivers/crypto/ccp/ |
D | ccp-crypto-aes.c | 265 unsigned int ivsize; member 275 .ivsize = 0, 283 .ivsize = AES_BLOCK_SIZE, 291 .ivsize = AES_BLOCK_SIZE, 299 .ivsize = AES_BLOCK_SIZE, 307 .ivsize = AES_BLOCK_SIZE, 315 .ivsize = CTR_RFC3686_IV_SIZE, 342 alg->cra_ablkcipher.ivsize = def->ivsize; in ccp_register_aes_alg()
|
D | ccp-crypto-aes-xts.c | 255 alg->cra_ablkcipher.ivsize = AES_BLOCK_SIZE; in ccp_register_aes_xts_alg()
|
/linux-4.1.27/net/ceph/ |
D | crypto.c | 173 int ivsize; in ceph_aes_encrypt() local 193 ivsize = crypto_blkcipher_ivsize(tfm); in ceph_aes_encrypt() 194 memcpy(iv, aes_iv, ivsize); in ceph_aes_encrypt() 233 int ivsize; in ceph_aes_encrypt2() local 254 ivsize = crypto_blkcipher_ivsize(tfm); in ceph_aes_encrypt2() 255 memcpy(iv, aes_iv, ivsize); in ceph_aes_encrypt2() 295 int ivsize; in ceph_aes_decrypt() local 311 ivsize = crypto_blkcipher_ivsize(tfm); in ceph_aes_decrypt() 312 memcpy(iv, aes_iv, ivsize); in ceph_aes_decrypt() 360 int ivsize; in ceph_aes_decrypt2() local [all …]
|
/linux-4.1.27/security/keys/encrypted-keys/ |
D | encrypted.c | 47 static unsigned int ivsize; variable 96 ivsize = crypto_blkcipher_ivsize(tfm); in aes_get_sizes() 406 unsigned int ivsize) in init_blkcipher_desc() argument 424 crypto_blkcipher_set_iv(desc->tfm, iv, ivsize); in init_blkcipher_desc() 480 epayload->iv, ivsize); in derived_key_encrypt() 575 epayload->iv, ivsize); in derived_key_decrypt() 633 + strlen(datalen) + 1 + ivsize + 1 + encrypted_datalen; in encrypted_key_alloc() 665 asciilen = (ivsize + 1 + encrypted_datalen + HASH_SIZE) * 2; in encrypted_key_decrypt() 669 hex_encoded_data = hex_encoded_iv + (2 * ivsize) + 2; in encrypted_key_decrypt() 670 ret = hex2bin(epayload->iv, hex_encoded_iv, ivsize); in encrypted_key_decrypt() [all …]
|
/linux-4.1.27/include/linux/ |
D | cryptouser.h | 84 unsigned int ivsize; member 92 unsigned int ivsize; member
|
D | crypto.h | 293 unsigned int ivsize; member 333 unsigned int ivsize; member 363 unsigned int ivsize; member 601 unsigned int ivsize; member 615 unsigned int ivsize; member 940 return crypto_ablkcipher_crt(tfm)->ivsize; in crypto_ablkcipher_ivsize() 1277 return crypto_aead_crt(tfm)->ivsize; in crypto_aead_ivsize() 1725 return crypto_blkcipher_alg(tfm)->ivsize; in crypto_blkcipher_ivsize()
|
/linux-4.1.27/arch/arm64/crypto/ |
D | aes-glue.c | 297 .ivsize = AES_BLOCK_SIZE, 316 .ivsize = AES_BLOCK_SIZE, 335 .ivsize = AES_BLOCK_SIZE, 354 .ivsize = AES_BLOCK_SIZE, 374 .ivsize = AES_BLOCK_SIZE, 394 .ivsize = AES_BLOCK_SIZE, 414 .ivsize = AES_BLOCK_SIZE, 434 .ivsize = AES_BLOCK_SIZE,
|
D | aes-ce-ccm-glue.c | 272 .ivsize = AES_BLOCK_SIZE,
|
/linux-4.1.27/arch/arm/crypto/ |
D | aes-ce-glue.c | 367 .ivsize = AES_BLOCK_SIZE, 386 .ivsize = AES_BLOCK_SIZE, 405 .ivsize = AES_BLOCK_SIZE, 424 .ivsize = AES_BLOCK_SIZE, 444 .ivsize = AES_BLOCK_SIZE, 464 .ivsize = AES_BLOCK_SIZE, 484 .ivsize = AES_BLOCK_SIZE, 504 .ivsize = AES_BLOCK_SIZE,
|
D | aesbs-glue.c | 314 .ivsize = AES_BLOCK_SIZE, 333 .ivsize = AES_BLOCK_SIZE, 352 .ivsize = AES_BLOCK_SIZE, 372 .ivsize = AES_BLOCK_SIZE, 392 .ivsize = AES_BLOCK_SIZE, 412 .ivsize = AES_BLOCK_SIZE,
|
/linux-4.1.27/arch/x86/crypto/ |
D | twofish_avx_glue.c | 394 .ivsize = TF_BLOCK_SIZE, 418 .ivsize = TF_BLOCK_SIZE, 439 .ivsize = TF_BLOCK_SIZE, 482 .ivsize = TF_BLOCK_SIZE, 504 .ivsize = TF_BLOCK_SIZE, 529 .ivsize = TF_BLOCK_SIZE, 551 .ivsize = TF_BLOCK_SIZE,
|
D | serpent_avx2_glue.c | 366 .ivsize = SERPENT_BLOCK_SIZE, 391 .ivsize = SERPENT_BLOCK_SIZE, 413 .ivsize = SERPENT_BLOCK_SIZE, 458 .ivsize = SERPENT_BLOCK_SIZE, 481 .ivsize = SERPENT_BLOCK_SIZE, 507 .ivsize = SERPENT_BLOCK_SIZE, 530 .ivsize = SERPENT_BLOCK_SIZE,
|
D | cast6_avx_glue.c | 426 .ivsize = CAST6_BLOCK_SIZE, 450 .ivsize = CAST6_BLOCK_SIZE, 471 .ivsize = CAST6_BLOCK_SIZE, 514 .ivsize = CAST6_BLOCK_SIZE, 536 .ivsize = CAST6_BLOCK_SIZE, 561 .ivsize = CAST6_BLOCK_SIZE, 583 .ivsize = CAST6_BLOCK_SIZE,
|
D | camellia_aesni_avx2_glue.c | 397 .ivsize = CAMELLIA_BLOCK_SIZE, 421 .ivsize = CAMELLIA_BLOCK_SIZE, 442 .ivsize = CAMELLIA_BLOCK_SIZE, 485 .ivsize = CAMELLIA_BLOCK_SIZE, 507 .ivsize = CAMELLIA_BLOCK_SIZE, 532 .ivsize = CAMELLIA_BLOCK_SIZE, 554 .ivsize = CAMELLIA_BLOCK_SIZE,
|
D | serpent_avx_glue.c | 432 .ivsize = SERPENT_BLOCK_SIZE, 456 .ivsize = SERPENT_BLOCK_SIZE, 477 .ivsize = SERPENT_BLOCK_SIZE, 520 .ivsize = SERPENT_BLOCK_SIZE, 542 .ivsize = SERPENT_BLOCK_SIZE, 567 .ivsize = SERPENT_BLOCK_SIZE, 589 .ivsize = SERPENT_BLOCK_SIZE,
|
D | camellia_aesni_avx_glue.c | 389 .ivsize = CAMELLIA_BLOCK_SIZE, 413 .ivsize = CAMELLIA_BLOCK_SIZE, 434 .ivsize = CAMELLIA_BLOCK_SIZE, 477 .ivsize = CAMELLIA_BLOCK_SIZE, 499 .ivsize = CAMELLIA_BLOCK_SIZE, 524 .ivsize = CAMELLIA_BLOCK_SIZE, 546 .ivsize = CAMELLIA_BLOCK_SIZE,
|
D | serpent_sse2_glue.c | 441 .ivsize = SERPENT_BLOCK_SIZE, 465 .ivsize = SERPENT_BLOCK_SIZE, 486 .ivsize = SERPENT_BLOCK_SIZE, 529 .ivsize = SERPENT_BLOCK_SIZE, 551 .ivsize = SERPENT_BLOCK_SIZE, 576 .ivsize = SERPENT_BLOCK_SIZE, 598 .ivsize = SERPENT_BLOCK_SIZE,
|
D | salsa20_glue.c | 35 u32 keysize, u32 ivsize); 102 .ivsize = SALSA20_IV_SIZE,
|
D | twofish_glue_3way.c | 368 .ivsize = TF_BLOCK_SIZE, 388 .ivsize = TF_BLOCK_SIZE, 409 .ivsize = TF_BLOCK_SIZE, 429 .ivsize = TF_BLOCK_SIZE,
|
D | fpu.c | 126 inst->alg.cra_blkcipher.ivsize = alg->cra_blkcipher.ivsize; in crypto_fpu_alloc()
|
D | aesni-intel_glue.c | 1361 .ivsize = AES_BLOCK_SIZE, 1384 .ivsize = AES_BLOCK_SIZE, 1406 .ivsize = AES_BLOCK_SIZE, 1430 .ivsize = 8, 1454 .ivsize = 8, 1476 .ivsize = AES_BLOCK_SIZE, 1499 .ivsize = AES_BLOCK_SIZE, 1520 .ivsize = AES_BLOCK_SIZE, 1542 .ivsize = AES_BLOCK_SIZE, 1564 .ivsize = AES_BLOCK_SIZE,
|
D | cast5_avx_glue.c | 395 .ivsize = CAST5_BLOCK_SIZE, 438 .ivsize = CAST5_BLOCK_SIZE, 460 .ivsize = CAST5_BLOCK_SIZE,
|
D | camellia_glue.c | 1612 .ivsize = CAMELLIA_BLOCK_SIZE, 1632 .ivsize = CAMELLIA_BLOCK_SIZE, 1655 .ivsize = CAMELLIA_BLOCK_SIZE, 1675 .ivsize = CAMELLIA_BLOCK_SIZE,
|
D | blowfish_glue.c | 409 .ivsize = BF_BLOCK_SIZE, 429 .ivsize = BF_BLOCK_SIZE,
|
D | des3_ede_glue.c | 436 .ivsize = DES3_EDE_BLOCK_SIZE, 456 .ivsize = DES3_EDE_BLOCK_SIZE,
|
/linux-4.1.27/drivers/usb/wusbcore/ |
D | crypto.c | 211 size_t ivsize, dst_size; in wusb_ccm_mac() local 236 ivsize = crypto_blkcipher_ivsize(tfm_cbc); in wusb_ccm_mac() 237 memset(iv, 0, ivsize); in wusb_ccm_mac()
|
/linux-4.1.27/drivers/crypto/nx/ |
D | nx-aes-ctr.c | 161 .ivsize = AES_BLOCK_SIZE, 182 .ivsize = CTR_RFC3686_IV_SIZE,
|
D | nx-aes-cbc.c | 145 .ivsize = AES_BLOCK_SIZE,
|
D | nx-aes-gcm.c | 499 .ivsize = AES_BLOCK_SIZE, 520 .ivsize = 8,
|
D | nx-aes-ccm.c | 576 .ivsize = AES_BLOCK_SIZE, 598 .ivsize = 8,
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | aes-spe-glue.c | 423 .ivsize = AES_BLOCK_SIZE, 443 .ivsize = AES_BLOCK_SIZE, 463 .ivsize = AES_BLOCK_SIZE, 483 .ivsize = AES_BLOCK_SIZE,
|
/linux-4.1.27/arch/s390/crypto/ |
D | des_s390.c | 218 .ivsize = DES_BLOCK_SIZE, 364 .ivsize = DES_BLOCK_SIZE, 487 .ivsize = DES_BLOCK_SIZE, 530 .ivsize = DES_BLOCK_SIZE,
|
D | aes_s390.c | 523 .ivsize = AES_BLOCK_SIZE, 730 .ivsize = AES_BLOCK_SIZE, 881 .ivsize = AES_BLOCK_SIZE,
|
/linux-4.1.27/drivers/crypto/vmx/ |
D | aes_ctr.c | 163 .ivsize = 0,
|
D | aes_cbc.c | 179 .ivsize = 0,
|
/linux-4.1.27/arch/sparc/crypto/ |
D | aes_glue.c | 436 .ivsize = AES_BLOCK_SIZE, 456 .ivsize = AES_BLOCK_SIZE,
|
D | des_glue.c | 432 .ivsize = DES_BLOCK_SIZE, 489 .ivsize = DES3_EDE_BLOCK_SIZE,
|
D | camellia_glue.c | 277 .ivsize = CAMELLIA_BLOCK_SIZE,
|
/linux-4.1.27/drivers/crypto/qat/qat_common/ |
D | qat_algs.c | 1201 .ivsize = AES_BLOCK_SIZE, 1223 .ivsize = AES_BLOCK_SIZE, 1245 .ivsize = AES_BLOCK_SIZE, 1268 .ivsize = AES_BLOCK_SIZE,
|
/linux-4.1.27/include/crypto/ |
D | algapi.h | 103 unsigned int ivsize; member
|
/linux-4.1.27/drivers/crypto/ux500/cryp/ |
D | cryp_core.c | 1179 .ivsize = AES_BLOCK_SIZE, 1205 .ivsize = AES_BLOCK_SIZE, 1357 .ivsize = DES3_EDE_BLOCK_SIZE,
|
/linux-4.1.27/drivers/crypto/amcc/ |
D | crypto4xx_core.c | 1146 .ivsize = AES_IV_SIZE,
|