Searched refs:ablkcipher (Results 1 – 4 of 4) sorted by relevance
/linux-4.19.296/crypto/ |
D | ablkcipher.c | 397 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher; in crypto_ablkcipher_show() local 403 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize); in crypto_ablkcipher_show() 404 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize); in crypto_ablkcipher_show() 405 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize); in crypto_ablkcipher_show() 406 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<default>"); in crypto_ablkcipher_show() 472 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher; in crypto_givcipher_show() local 478 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize); in crypto_givcipher_show() 479 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize); in crypto_givcipher_show() 480 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize); in crypto_givcipher_show() 481 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<built-in>"); in crypto_givcipher_show()
|
D | skcipher.c | 705 struct crypto_ablkcipher *ablkcipher = *ctx; in skcipher_setkey_ablkcipher() local 708 crypto_ablkcipher_clear_flags(ablkcipher, ~0); in skcipher_setkey_ablkcipher() 709 crypto_ablkcipher_set_flags(ablkcipher, in skcipher_setkey_ablkcipher() 712 err = crypto_ablkcipher_setkey(ablkcipher, key, keylen); in skcipher_setkey_ablkcipher() 714 crypto_ablkcipher_get_flags(ablkcipher) & in skcipher_setkey_ablkcipher() 771 struct crypto_ablkcipher *ablkcipher; in crypto_init_skcipher_ops_ablkcipher() local 783 ablkcipher = __crypto_ablkcipher_cast(abtfm); in crypto_init_skcipher_ops_ablkcipher() 784 *ctx = ablkcipher; in crypto_init_skcipher_ops_ablkcipher() 791 skcipher->ivsize = crypto_ablkcipher_ivsize(ablkcipher); in crypto_init_skcipher_ops_ablkcipher() 792 skcipher->reqsize = crypto_ablkcipher_reqsize(ablkcipher) + in crypto_init_skcipher_ops_ablkcipher()
|
D | Makefile | 20 crypto_blkcipher-y := ablkcipher.o
|
/linux-4.19.296/include/linux/ |
D | crypto.h | 373 #define cra_ablkcipher cra_u.ablkcipher 479 struct ablkcipher_alg ablkcipher; member 588 #define crt_ablkcipher crt_u.ablkcipher 598 struct ablkcipher_tfm ablkcipher; member
|