Searched refs:crypto_cipher_tfm (Results 1 – 7 of 7) sorted by relevance
| /Linux-v5.10/crypto/ |
| D | cipher.c | 35 ret = cia->cia_setkey(crypto_cipher_tfm(tfm), alignbuffer, keylen); in setkey_unaligned() 54 return cia->cia_setkey(crypto_cipher_tfm(tfm), key, keylen); in crypto_cipher_setkey() 72 fn(crypto_cipher_tfm(tfm), tmp, tmp); in cipher_crypt_one() 75 fn(crypto_cipher_tfm(tfm), dst, src); in cipher_crypt_one()
|
| D | cbc.c | 29 tfm = crypto_cipher_tfm(cipher); in crypto_cbc_encrypt_segment() 56 tfm = crypto_cipher_tfm(cipher); in crypto_cbc_encrypt_inplace() 104 tfm = crypto_cipher_tfm(cipher); in crypto_cbc_decrypt_segment() 133 tfm = crypto_cipher_tfm(cipher); in crypto_cbc_decrypt_inplace()
|
| D | ecb.c | 31 fn(crypto_cipher_tfm(cipher), dst, src); in crypto_ecb_crypt()
|
| D | ctr.c | 58 fn(crypto_cipher_tfm(tfm), dst, ctrblk); in crypto_ctr_crypt_segment() 86 fn(crypto_cipher_tfm(tfm), keystream, ctrblk); in crypto_ctr_crypt_inplace()
|
| D | testmgr.c | 2615 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm)); in test_cipher()
|
| /Linux-v5.10/include/linux/ |
| D | crypto.h | 792 static inline struct crypto_tfm *crypto_cipher_tfm(struct crypto_cipher *tfm) in crypto_cipher_tfm() function 803 crypto_free_tfm(crypto_cipher_tfm(tfm)); in crypto_free_cipher() 837 return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm)); in crypto_cipher_blocksize() 842 return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm)); in crypto_cipher_alignmask() 847 return crypto_tfm_get_flags(crypto_cipher_tfm(tfm)); in crypto_cipher_get_flags() 853 crypto_tfm_set_flags(crypto_cipher_tfm(tfm), flags); in crypto_cipher_set_flags() 859 crypto_tfm_clear_flags(crypto_cipher_tfm(tfm), flags); in crypto_cipher_clear_flags()
|
| /Linux-v5.10/include/crypto/ |
| D | algapi.h | 228 return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher; in crypto_cipher_alg()
|