Searched refs:cra_cipher (Results 1 – 16 of 16) sorted by relevance
/Linux-v4.19/arch/arm64/crypto/ |
D | aes-cipher-glue.c | 46 .cra_cipher.cia_min_keysize = AES_MIN_KEY_SIZE, 47 .cra_cipher.cia_max_keysize = AES_MAX_KEY_SIZE, 48 .cra_cipher.cia_setkey = crypto_aes_set_key, 49 .cra_cipher.cia_encrypt = aes_encrypt, 50 .cra_cipher.cia_decrypt = aes_decrypt
|
D | aes-ce-glue.c | 170 .cra_cipher = {
|
/Linux-v4.19/arch/arm/crypto/ |
D | aes-cipher-glue.c | 47 .cra_cipher.cia_min_keysize = AES_MIN_KEY_SIZE, 48 .cra_cipher.cia_max_keysize = AES_MAX_KEY_SIZE, 49 .cra_cipher.cia_setkey = crypto_aes_set_key, 50 .cra_cipher.cia_encrypt = aes_encrypt, 51 .cra_cipher.cia_decrypt = aes_decrypt,
|
/Linux-v4.19/crypto/ |
D | cipher.c | 27 struct cipher_alg *cia = &tfm->__crt_alg->cra_cipher; in setkey_unaligned() 49 struct cipher_alg *cia = &tfm->__crt_alg->cra_cipher; in setkey() 83 struct cipher_alg *cipher = &tfm->__crt_alg->cra_cipher; in cipher_encrypt_unaligned() 97 struct cipher_alg *cipher = &tfm->__crt_alg->cra_cipher; in cipher_decrypt_unaligned() 110 struct cipher_alg *cipher = &tfm->__crt_alg->cra_cipher; in crypto_init_cipher_ops()
|
D | aes_ti.c | 353 .cra_cipher.cia_min_keysize = AES_MIN_KEY_SIZE, 354 .cra_cipher.cia_max_keysize = AES_MAX_KEY_SIZE, 355 .cra_cipher.cia_setkey = aesti_set_key, 356 .cra_cipher.cia_encrypt = aesti_encrypt, 357 .cra_cipher.cia_decrypt = aesti_decrypt
|
D | proc.c | 73 alg->cra_cipher.cia_min_keysize); in c_show() 75 alg->cra_cipher.cia_max_keysize); in c_show()
|
D | cbc.c | 160 inst->alg.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_cbc_create() 161 inst->alg.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_cbc_create()
|
D | ecb.c | 143 inst->alg.cra_blkcipher.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_ecb_alloc() 144 inst->alg.cra_blkcipher.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_ecb_alloc()
|
D | keywrap.c | 341 inst->alg.cra_blkcipher.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_kw_alloc() 342 inst->alg.cra_blkcipher.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_kw_alloc()
|
D | pcbc.c | 261 inst->alg.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_pcbc_create() 262 inst->alg.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_pcbc_create()
|
D | cfb.c | 303 inst->alg.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_cfb_create() 304 inst->alg.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_cfb_create()
|
D | crypto_user.c | 89 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_report_cipher() 90 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_report_cipher()
|
D | ctr.c | 224 inst->alg.cra_blkcipher.min_keysize = alg->cra_cipher.cia_min_keysize; in crypto_ctr_alloc() 225 inst->alg.cra_blkcipher.max_keysize = alg->cra_cipher.cia_max_keysize; in crypto_ctr_alloc()
|
/Linux-v4.19/drivers/crypto/vmx/ |
D | aes.c | 136 .cra_cipher = {
|
/Linux-v4.19/include/crypto/ |
D | algapi.h | 323 return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher; in crypto_cipher_alg()
|
/Linux-v4.19/include/linux/ |
D | crypto.h | 375 #define cra_cipher cra_u.cipher macro
|