Searched refs:cra_ablkcipher (Results 1 – 7 of 7) sorted by relevance
348 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher; in crypto_init_ablkcipher_ops()369 strncpy(rblkcipher.geniv, alg->cra_ablkcipher.geniv ?: "<default>", in crypto_ablkcipher_report()374 rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize; in crypto_ablkcipher_report()375 rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize; in crypto_ablkcipher_report()376 rblkcipher.ivsize = alg->cra_ablkcipher.ivsize; in crypto_ablkcipher_report()397 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher; in crypto_ablkcipher_show()422 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher; in crypto_init_givcipher_ops()444 strncpy(rblkcipher.geniv, alg->cra_ablkcipher.geniv ?: "<built-in>", in crypto_givcipher_report()449 rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize; in crypto_givcipher_report()450 rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize; in crypto_givcipher_report()[all …]
421 inst->alg.cra_ablkcipher.ivsize = alg->cra_blkcipher.ivsize; in cryptd_create_blkcipher()422 inst->alg.cra_ablkcipher.min_keysize = alg->cra_blkcipher.min_keysize; in cryptd_create_blkcipher()423 inst->alg.cra_ablkcipher.max_keysize = alg->cra_blkcipher.max_keysize; in cryptd_create_blkcipher()425 inst->alg.cra_ablkcipher.geniv = alg->cra_blkcipher.geniv; in cryptd_create_blkcipher()432 inst->alg.cra_ablkcipher.setkey = cryptd_blkcipher_setkey; in cryptd_create_blkcipher()433 inst->alg.cra_ablkcipher.encrypt = cryptd_blkcipher_encrypt_enqueue; in cryptd_create_blkcipher()434 inst->alg.cra_ablkcipher.decrypt = cryptd_blkcipher_decrypt_enqueue; in cryptd_create_blkcipher()
745 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher; in skcipher_encrypt_ablkcipher()754 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher; in skcipher_decrypt_ablkcipher()794 skcipher->keysize = calg->cra_ablkcipher.max_keysize; in crypto_init_skcipher_ops_ablkcipher()
191 if (alg->base.cra_ablkcipher.encrypt) in crypto_skcipher_alg_min_keysize()192 return alg->base.cra_ablkcipher.min_keysize; in crypto_skcipher_alg_min_keysize()204 if (alg->base.cra_ablkcipher.encrypt) in crypto_skcipher_alg_max_keysize()205 return alg->base.cra_ablkcipher.max_keysize; in crypto_skcipher_alg_max_keysize()
265 if (alg->base.cra_ablkcipher.encrypt) in crypto_skcipher_alg_ivsize()266 return alg->base.cra_ablkcipher.ivsize; in crypto_skcipher_alg_ivsize()292 if (alg->base.cra_ablkcipher.encrypt) in crypto_skcipher_alg_chunksize()305 if (alg->base.cra_ablkcipher.encrypt) in crypto_skcipher_alg_walksize()
280 return &crypto_ablkcipher_tfm(tfm)->__crt_alg->cra_ablkcipher; in crypto_ablkcipher_alg()
373 #define cra_ablkcipher cra_u.ablkcipher macro