Home
last modified time | relevance | path

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

/linux-5.19.10/crypto/
Daes_ti.c61 .cra_cipher.cia_min_keysize = AES_MIN_KEY_SIZE,
62 .cra_cipher.cia_max_keysize = AES_MAX_KEY_SIZE,
63 .cra_cipher.cia_setkey = aesti_set_key,
64 .cra_cipher.cia_encrypt = aesti_encrypt,
65 .cra_cipher.cia_decrypt = aesti_decrypt
Dproc.c68 alg->cra_cipher.cia_min_keysize); in c_show()
70 alg->cra_cipher.cia_max_keysize); in c_show()
Dcrypto_user_base.c81 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_report_cipher()
82 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_report_cipher()
Dadiantum.c480 if (blockcipher_alg->cra_cipher.cia_min_keysize > BLOCKCIPHER_KEY_SIZE || in adiantum_supported_algorithms()
481 blockcipher_alg->cra_cipher.cia_max_keysize < BLOCKCIPHER_KEY_SIZE) in adiantum_supported_algorithms()
Dessiv.c421 if (hash_alg->digestsize < alg->cra_cipher.cia_min_keysize || in essiv_supported_algorithms()
422 hash_alg->digestsize > alg->cra_cipher.cia_max_keysize) in essiv_supported_algorithms()
Dskcipher.c964 inst->alg.min_keysize = cipher_alg->cra_cipher.cia_min_keysize; in skcipher_alloc_instance_simple()
965 inst->alg.max_keysize = cipher_alg->cra_cipher.cia_max_keysize; in skcipher_alloc_instance_simple()
/linux-5.19.10/arch/arm64/crypto/
Daes-cipher-glue.c40 .cra_cipher.cia_min_keysize = AES_MIN_KEY_SIZE,
41 .cra_cipher.cia_max_keysize = AES_MAX_KEY_SIZE,
42 .cra_cipher.cia_setkey = crypto_aes_set_key,
43 .cra_cipher.cia_encrypt = aes_arm64_encrypt,
44 .cra_cipher.cia_decrypt = aes_arm64_decrypt
Daes-ce-glue.c159 .cra_cipher = {
/linux-5.19.10/arch/arm/crypto/
Daes-cipher-glue.c41 .cra_cipher.cia_min_keysize = AES_MIN_KEY_SIZE,
42 .cra_cipher.cia_max_keysize = AES_MAX_KEY_SIZE,
43 .cra_cipher.cia_setkey = crypto_aes_set_key,
44 .cra_cipher.cia_encrypt = aes_arm_encrypt,
45 .cra_cipher.cia_decrypt = aes_arm_decrypt,
/linux-5.19.10/drivers/crypto/vmx/
Daes.c127 .cra_cipher = {
/linux-5.19.10/include/crypto/internal/
Dcipher.h215 return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher; in crypto_cipher_alg()
/linux-5.19.10/include/linux/
Dcrypto.h388 #define cra_cipher cra_u.cipher macro