Home
last modified time | relevance | path

Searched refs:cra_cipher (Results 1 – 8 of 8) sorted by relevance

/linux/crypto/
H A Decb.c132 inst->alg.co.min_keysize = cipher_alg->cra_cipher.cia_min_keysize; in lskcipher_alloc_instance_simple2()
133 inst->alg.co.max_keysize = cipher_alg->cra_cipher.cia_max_keysize; in lskcipher_alloc_instance_simple2()
H A Dcrypto_user.c80 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_report_cipher()
81 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_report_cipher()
H A Dadiantum.c562 if (blockcipher_alg->cra_cipher.cia_min_keysize > BLOCKCIPHER_KEY_SIZE || in adiantum_supported_algorithms()
563 blockcipher_alg->cra_cipher.cia_max_keysize < BLOCKCIPHER_KEY_SIZE) in adiantum_supported_algorithms()
H A Dessiv.c423 if (hash_alg->digestsize < alg->cra_cipher.cia_min_keysize || in essiv_supported_algorithms()
424 hash_alg->digestsize > alg->cra_cipher.cia_max_keysize) in essiv_supported_algorithms()
H A Dskcipher.c868 inst->alg.min_keysize = cipher_alg->cra_cipher.cia_min_keysize; in skcipher_alloc_instance_simple()
869 inst->alg.max_keysize = cipher_alg->cra_cipher.cia_max_keysize; in skcipher_alloc_instance_simple()
/linux/arch/riscv/crypto/
H A Dsm4-riscv64-glue.c76 .cra_cipher = {
/linux/include/crypto/internal/
H A Dcipher.h217 return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher; in crypto_cipher_alg()
/linux/include/linux/
H A Dcrypto.h260 #define cra_cipher cra_u.cipher macro