Home
last modified time | relevance | path

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

/linux-4.4.14/include/linux/
Dcrypto.h1175 static inline struct blkcipher_tfm *crypto_blkcipher_crt( in crypto_blkcipher_crt() function
1259 return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm), in crypto_blkcipher_setkey()
1286 desc->info = crypto_blkcipher_crt(desc->tfm)->iv; in crypto_blkcipher_encrypt()
1287 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); in crypto_blkcipher_encrypt()
1314 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); in crypto_blkcipher_encrypt_iv()
1339 desc->info = crypto_blkcipher_crt(desc->tfm)->iv; in crypto_blkcipher_decrypt()
1340 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); in crypto_blkcipher_decrypt()
1364 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); in crypto_blkcipher_decrypt_iv()
1379 memcpy(crypto_blkcipher_crt(tfm)->iv, src, len); in crypto_blkcipher_set_iv()
1395 memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len); in crypto_blkcipher_get_iv()
/linux-4.4.14/crypto/
Dablk_helper.c64 return crypto_blkcipher_crt(desc.tfm)->encrypt( in __ablk_encrypt()
108 return crypto_blkcipher_crt(desc.tfm)->decrypt( in ablk_decrypt()
Dcryptd.c236 crypto_blkcipher_crt(child)->encrypt); in cryptd_blkcipher_encrypt()
245 crypto_blkcipher_crt(child)->decrypt); in cryptd_blkcipher_decrypt()
/linux-4.4.14/drivers/block/
Dcryptoloop.c138 encdecfunc = crypto_blkcipher_crt(tfm)->decrypt; in cryptoloop_transfer()
144 encdecfunc = crypto_blkcipher_crt(tfm)->encrypt; in cryptoloop_transfer()
/linux-4.4.14/arch/x86/crypto/
Dfpu.c57 err = crypto_blkcipher_crt(desc.tfm)->encrypt(&desc, dst, src, nbytes); in crypto_fpu_encrypt()
76 err = crypto_blkcipher_crt(desc.tfm)->decrypt(&desc, dst, src, nbytes); in crypto_fpu_decrypt()
/linux-4.4.14/net/ceph/
Dcrypto.c188 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_encrypt()
249 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_encrypt2()
306 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_decrypt()
372 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_decrypt2()
/linux-4.4.14/drivers/usb/wusbcore/
Dcrypto.c235 iv = crypto_blkcipher_crt(tfm_cbc)->iv; in wusb_ccm_mac()