Searched refs:crypto_blkcipher_crt (Results 1 – 8 of 8) sorted by relevance
/linux-3.4.99/include/linux/ |
D | crypto.h | 919 static inline struct blkcipher_tfm *crypto_blkcipher_crt( in crypto_blkcipher_crt() function 968 return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm), in crypto_blkcipher_setkey() 977 desc->info = crypto_blkcipher_crt(desc->tfm)->iv; in crypto_blkcipher_encrypt() 978 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); in crypto_blkcipher_encrypt() 986 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); in crypto_blkcipher_encrypt_iv() 994 desc->info = crypto_blkcipher_crt(desc->tfm)->iv; in crypto_blkcipher_decrypt() 995 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); in crypto_blkcipher_decrypt() 1003 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); in crypto_blkcipher_decrypt_iv() 1009 memcpy(crypto_blkcipher_crt(tfm)->iv, src, len); in crypto_blkcipher_set_iv() 1015 memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len); in crypto_blkcipher_get_iv()
|
/linux-3.4.99/drivers/block/ |
D | cryptoloop.c | 138 encdecfunc = crypto_blkcipher_crt(tfm)->decrypt; in cryptoloop_transfer() 144 encdecfunc = crypto_blkcipher_crt(tfm)->encrypt; in cryptoloop_transfer()
|
/linux-3.4.99/net/ceph/ |
D | crypto.c | 118 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_encrypt() 170 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_encrypt2() 219 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_decrypt() 281 iv = crypto_blkcipher_crt(tfm)->iv; in ceph_aes_decrypt2()
|
/linux-3.4.99/arch/x86/crypto/ |
D | fpu.c | 56 err = crypto_blkcipher_crt(desc.tfm)->encrypt(&desc, dst, src, nbytes); in crypto_fpu_encrypt() 75 err = crypto_blkcipher_crt(desc.tfm)->decrypt(&desc, dst, src, nbytes); in crypto_fpu_decrypt()
|
D | serpent_sse2_glue.c | 625 return crypto_blkcipher_crt(desc.tfm)->encrypt( in __ablk_encrypt() 667 return crypto_blkcipher_crt(desc.tfm)->decrypt( in ablk_decrypt()
|
D | aesni-intel_glue.c | 521 return crypto_blkcipher_crt(desc.tfm)->encrypt( in ablk_encrypt() 542 return crypto_blkcipher_crt(desc.tfm)->decrypt( in ablk_decrypt()
|
/linux-3.4.99/drivers/usb/wusbcore/ |
D | crypto.c | 237 iv = crypto_blkcipher_crt(tfm_cbc)->iv; in wusb_ccm_mac()
|
/linux-3.4.99/crypto/ |
D | cryptd.c | 223 crypto_blkcipher_crt(child)->encrypt); in cryptd_blkcipher_encrypt() 232 crypto_blkcipher_crt(child)->decrypt); in cryptd_blkcipher_decrypt()
|