Searched refs:cra_cipher (Results 1 – 12 of 12) sorted by relevance
/linux-5.19.10/crypto/ |
D | aes_ti.c | 61 .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
|
D | proc.c | 68 alg->cra_cipher.cia_min_keysize); in c_show() 70 alg->cra_cipher.cia_max_keysize); in c_show()
|
D | crypto_user_base.c | 81 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()
|
D | adiantum.c | 480 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()
|
D | essiv.c | 421 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()
|
D | skcipher.c | 964 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/ |
D | aes-cipher-glue.c | 40 .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
|
D | aes-ce-glue.c | 159 .cra_cipher = {
|
/linux-5.19.10/arch/arm/crypto/ |
D | aes-cipher-glue.c | 41 .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/ |
D | aes.c | 127 .cra_cipher = {
|
/linux-5.19.10/include/crypto/internal/ |
D | cipher.h | 215 return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher; in crypto_cipher_alg()
|
/linux-5.19.10/include/linux/ |
D | crypto.h | 388 #define cra_cipher cra_u.cipher macro
|