Home
last modified time | relevance | path

Searched refs:cipher_tfm (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/drivers/crypto/ccp/
Dccp-crypto-aes-cmac.c342 struct crypto_cipher *cipher_tfm; in ccp_aes_cmac_cra_init() local
349 cipher_tfm = crypto_alloc_cipher("aes", 0, in ccp_aes_cmac_cra_init()
352 if (IS_ERR(cipher_tfm)) { in ccp_aes_cmac_cra_init()
354 return PTR_ERR(cipher_tfm); in ccp_aes_cmac_cra_init()
356 ctx->u.aes.tfm_cipher = cipher_tfm; in ccp_aes_cmac_cra_init()
/linux-4.4.14/crypto/
Dcipher.c108 struct cipher_tfm *ops = &tfm->crt_cipher; in crypto_init_cipher_ops()
/linux-4.4.14/include/linux/
Dcrypto.h515 struct cipher_tfm { struct
556 struct cipher_tfm cipher;
1483 static inline struct cipher_tfm *crypto_cipher_crt(struct crypto_cipher *tfm) in crypto_cipher_crt()