Home
last modified time | relevance | path

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

/linux-6.12.1/arch/arm/crypto/
Daes-cipher-glue.c42 .cra_cipher.cia_min_keysize = AES_MIN_KEY_SIZE,
43 .cra_cipher.cia_max_keysize = AES_MAX_KEY_SIZE,
44 .cra_cipher.cia_setkey = crypto_aes_set_key,
45 .cra_cipher.cia_encrypt = aes_arm_encrypt,
46 .cra_cipher.cia_decrypt = aes_arm_decrypt,
/linux-6.12.1/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.c74 alg->cra_cipher.cia_min_keysize); in c_show()
76 alg->cra_cipher.cia_max_keysize); in c_show()
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()
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()
Dadiantum.c510 if (blockcipher_alg->cra_cipher.cia_min_keysize > BLOCKCIPHER_KEY_SIZE || in adiantum_supported_algorithms()
511 blockcipher_alg->cra_cipher.cia_max_keysize < BLOCKCIPHER_KEY_SIZE) in adiantum_supported_algorithms()
Dessiv.c426 if (hash_alg->digestsize < alg->cra_cipher.cia_min_keysize || in essiv_supported_algorithms()
427 hash_alg->digestsize > alg->cra_cipher.cia_max_keysize) in essiv_supported_algorithms()
Dskcipher.c1068 inst->alg.min_keysize = cipher_alg->cra_cipher.cia_min_keysize; in skcipher_alloc_instance_simple()
1069 inst->alg.max_keysize = cipher_alg->cra_cipher.cia_max_keysize; in skcipher_alloc_instance_simple()
/linux-6.12.1/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-6.12.1/arch/riscv/crypto/
Dsm4-riscv64-glue.c76 .cra_cipher = {
Daes-riscv64-glue.c466 .cra_cipher = {
/linux-6.12.1/include/crypto/internal/
Dcipher.h217 return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher; in crypto_cipher_alg()
/linux-6.12.1/arch/powerpc/crypto/
Daes.c127 .cra_cipher = {
/linux-6.12.1/include/linux/
Dcrypto.h260 #define cra_cipher cra_u.cipher macro