cra_blkcipher     231 crypto/ablkcipher.c 		geniv = alg->cra_blkcipher.geniv;
cra_blkcipher     281 crypto/ablkcipher.c 	      CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
cra_blkcipher     362 crypto/blkcipher.c 	struct blkcipher_alg *cipher = &tfm->__crt_alg->cra_blkcipher;
cra_blkcipher     383 crypto/blkcipher.c 	struct blkcipher_alg *cipher = &tfm->__crt_alg->cra_blkcipher;
cra_blkcipher     406 crypto/blkcipher.c 	struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher;
cra_blkcipher     420 crypto/blkcipher.c 	struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher;
cra_blkcipher     433 crypto/blkcipher.c 	struct blkcipher_alg *cipher = &alg->cra_blkcipher;
cra_blkcipher     448 crypto/blkcipher.c 	struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher;
cra_blkcipher     466 crypto/blkcipher.c 	struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher;
cra_blkcipher     484 crypto/blkcipher.c 	struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher;
cra_blkcipher     501 crypto/blkcipher.c 	seq_printf(m, "min keysize  : %u\n", alg->cra_blkcipher.min_keysize);
cra_blkcipher     502 crypto/blkcipher.c 	seq_printf(m, "max keysize  : %u\n", alg->cra_blkcipher.max_keysize);
cra_blkcipher     503 crypto/blkcipher.c 	seq_printf(m, "ivsize       : %u\n", alg->cra_blkcipher.ivsize);
cra_blkcipher     504 crypto/blkcipher.c 	seq_printf(m, "geniv        : %s\n", alg->cra_blkcipher.geniv ?:
cra_blkcipher     590 crypto/blkcipher.c 		balg.ivsize = alg->cra_blkcipher.ivsize;
cra_blkcipher     591 crypto/blkcipher.c 		balg.min_keysize = alg->cra_blkcipher.min_keysize;
cra_blkcipher     592 crypto/blkcipher.c 		balg.max_keysize = alg->cra_blkcipher.max_keysize;
cra_blkcipher     598 crypto/blkcipher.c 		balg.geniv = alg->cra_blkcipher.geniv;
cra_blkcipher     246 crypto/cbc.c   	inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize;
cra_blkcipher     247 crypto/cbc.c   	inst->alg.cra_blkcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
cra_blkcipher     248 crypto/cbc.c   	inst->alg.cra_blkcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
cra_blkcipher     255 crypto/cbc.c   	inst->alg.cra_blkcipher.setkey = crypto_cbc_setkey;
cra_blkcipher     256 crypto/cbc.c   	inst->alg.cra_blkcipher.encrypt = crypto_cbc_encrypt;
cra_blkcipher     257 crypto/cbc.c   	inst->alg.cra_blkcipher.decrypt = crypto_cbc_decrypt;
cra_blkcipher     251 crypto/cryptd.c 	inst->alg.cra_ablkcipher.ivsize = alg->cra_blkcipher.ivsize;
cra_blkcipher     252 crypto/cryptd.c 	inst->alg.cra_ablkcipher.min_keysize = alg->cra_blkcipher.min_keysize;
cra_blkcipher     253 crypto/cryptd.c 	inst->alg.cra_ablkcipher.max_keysize = alg->cra_blkcipher.max_keysize;
cra_blkcipher     255 crypto/cryptd.c 	inst->alg.cra_ablkcipher.geniv = alg->cra_blkcipher.geniv;
cra_blkcipher     209 crypto/ctr.c   	inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize;
cra_blkcipher     210 crypto/ctr.c   	inst->alg.cra_blkcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
cra_blkcipher     211 crypto/ctr.c   	inst->alg.cra_blkcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
cra_blkcipher     218 crypto/ctr.c   	inst->alg.cra_blkcipher.setkey = crypto_ctr_setkey;
cra_blkcipher     219 crypto/ctr.c   	inst->alg.cra_blkcipher.encrypt = crypto_ctr_crypt;
cra_blkcipher     220 crypto/ctr.c   	inst->alg.cra_blkcipher.decrypt = crypto_ctr_crypt;
cra_blkcipher     341 crypto/ctr.c   	if (alg->cra_blkcipher.ivsize != CTR_RFC3686_BLOCK_SIZE)
cra_blkcipher     358 crypto/ctr.c   	inst->alg.cra_blkcipher.ivsize = CTR_RFC3686_IV_SIZE;
cra_blkcipher     359 crypto/ctr.c   	inst->alg.cra_blkcipher.min_keysize = alg->cra_blkcipher.min_keysize
cra_blkcipher     361 crypto/ctr.c   	inst->alg.cra_blkcipher.max_keysize = alg->cra_blkcipher.max_keysize
cra_blkcipher     364 crypto/ctr.c   	inst->alg.cra_blkcipher.geniv = "seqiv";
cra_blkcipher     371 crypto/ctr.c   	inst->alg.cra_blkcipher.setkey = crypto_rfc3686_setkey;
cra_blkcipher     372 crypto/ctr.c   	inst->alg.cra_blkcipher.encrypt = crypto_rfc3686_crypt;
cra_blkcipher     373 crypto/ctr.c   	inst->alg.cra_blkcipher.decrypt = crypto_rfc3686_crypt;
cra_blkcipher     306 crypto/cts.c   	inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize;
cra_blkcipher     307 crypto/cts.c   	inst->alg.cra_blkcipher.min_keysize = alg->cra_blkcipher.min_keysize;
cra_blkcipher     308 crypto/cts.c   	inst->alg.cra_blkcipher.max_keysize = alg->cra_blkcipher.max_keysize;
cra_blkcipher     310 crypto/cts.c   	inst->alg.cra_blkcipher.geniv = "seqiv";
cra_blkcipher     317 crypto/cts.c   	inst->alg.cra_blkcipher.setkey = crypto_cts_setkey;
cra_blkcipher     318 crypto/cts.c   	inst->alg.cra_blkcipher.encrypt = crypto_cts_encrypt;
cra_blkcipher     319 crypto/cts.c   	inst->alg.cra_blkcipher.decrypt = crypto_cts_decrypt;
cra_blkcipher     143 crypto/ecb.c   	inst->alg.cra_blkcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
cra_blkcipher     144 crypto/ecb.c   	inst->alg.cra_blkcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
cra_blkcipher     151 crypto/ecb.c   	inst->alg.cra_blkcipher.setkey = crypto_ecb_setkey;
cra_blkcipher     152 crypto/ecb.c   	inst->alg.cra_blkcipher.encrypt = crypto_ecb_encrypt;
cra_blkcipher     153 crypto/ecb.c   	inst->alg.cra_blkcipher.decrypt = crypto_ecb_decrypt;
cra_blkcipher     261 crypto/lrw.c   	inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize;
cra_blkcipher     262 crypto/lrw.c   	inst->alg.cra_blkcipher.min_keysize =
cra_blkcipher     264 crypto/lrw.c   	inst->alg.cra_blkcipher.max_keysize =
cra_blkcipher     272 crypto/lrw.c   	inst->alg.cra_blkcipher.setkey = setkey;
cra_blkcipher     273 crypto/lrw.c   	inst->alg.cra_blkcipher.encrypt = encrypt;
cra_blkcipher     274 crypto/lrw.c   	inst->alg.cra_blkcipher.decrypt = decrypt;
cra_blkcipher     252 crypto/pcbc.c  	inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize;
cra_blkcipher     253 crypto/pcbc.c  	inst->alg.cra_blkcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
cra_blkcipher     254 crypto/pcbc.c  	inst->alg.cra_blkcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
cra_blkcipher     261 crypto/pcbc.c  	inst->alg.cra_blkcipher.setkey = crypto_pcbc_setkey;
cra_blkcipher     262 crypto/pcbc.c  	inst->alg.cra_blkcipher.encrypt = crypto_pcbc_encrypt;
cra_blkcipher     263 crypto/pcbc.c  	inst->alg.cra_blkcipher.decrypt = crypto_pcbc_decrypt;
cra_blkcipher     244 crypto/xts.c   	inst->alg.cra_blkcipher.ivsize = alg->cra_blocksize;
cra_blkcipher     245 crypto/xts.c   	inst->alg.cra_blkcipher.min_keysize =
cra_blkcipher     247 crypto/xts.c   	inst->alg.cra_blkcipher.max_keysize =
cra_blkcipher     255 crypto/xts.c   	inst->alg.cra_blkcipher.setkey = setkey;
cra_blkcipher     256 crypto/xts.c   	inst->alg.cra_blkcipher.encrypt = encrypt;
cra_blkcipher     257 crypto/xts.c   	inst->alg.cra_blkcipher.decrypt = decrypt;
cra_blkcipher     984 include/linux/crypto.h 	return &crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher;