Home
last modified time | relevance | path

Searched refs:algo_md (Results 1 – 2 of 2) sorted by relevance

/optee_os/core/drivers/crypto/caam/cipher/
H A Dcaam_cipher.c220 unsigned int algo_md = TEE_ALG_GET_CHAIN_MODE(algo); in get_cipheralgo() local
223 CIPHER_TRACE("Algo id:%" PRId32 " md:%" PRId32, algo_id, algo_md); in get_cipheralgo()
227 if (algo_md < ARRAY_SIZE(aes_alg)) in get_cipheralgo()
228 ca = &aes_alg[algo_md]; in get_cipheralgo()
232 if (algo_md < ARRAY_SIZE(des_alg)) in get_cipheralgo()
233 ca = &des_alg[algo_md]; in get_cipheralgo()
237 if (algo_md < ARRAY_SIZE(des3_alg)) in get_cipheralgo()
238 ca = &des3_alg[algo_md]; in get_cipheralgo()
/optee_os/core/drivers/crypto/caam/ae/
H A Dcaam_ae.c60 unsigned int algo_md = TEE_ALG_GET_CHAIN_MODE(algo); in get_cipheralgo() local
63 AE_TRACE("Algo id:%u md:%u", algo_id, algo_md); in get_cipheralgo()
67 if (algo_md < ARRAY_SIZE(aes_alg)) in get_cipheralgo()
68 ca = &aes_alg[algo_md]; in get_cipheralgo()