Home
last modified time | relevance | path

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

/crypto/
Dcipher.c23 struct cipher_alg *cia = crypto_cipher_alg(tfm); in setkey_unaligned() local
36 ret = cia->cia_setkey(crypto_cipher_tfm(tfm), alignbuffer, keylen); in setkey_unaligned()
46 struct cipher_alg *cia = crypto_cipher_alg(tfm); in crypto_cipher_setkey() local
49 if (keylen < cia->cia_min_keysize || keylen > cia->cia_max_keysize) in crypto_cipher_setkey()
55 return cia->cia_setkey(crypto_cipher_tfm(tfm), key, keylen); in crypto_cipher_setkey()
63 struct cipher_alg *cia = crypto_cipher_alg(tfm); in cipher_crypt_one() local
65 enc ? cia->cia_encrypt : cia->cia_decrypt; in cipher_crypt_one()