Searched refs:crypt_len (Results 1 – 2 of 2) sorted by relevance
/net/mac80211/ |
D | fils_aead.c | 153 size_t crypt_len; in aes_siv_decrypt() local 158 crypt_len = iv_c_len - AES_BLOCK_SIZE; in aes_siv_decrypt() 161 len[num_elem] = crypt_len; in aes_siv_decrypt() 191 sg_init_one(src, iv_crypt + AES_BLOCK_SIZE, crypt_len); in aes_siv_decrypt() 192 sg_init_one(dst, out, crypt_len); in aes_siv_decrypt() 193 skcipher_request_set_crypt(req, src, dst, crypt_len, iv); in aes_siv_decrypt() 224 size_t crypt_len; in fils_encrypt_assoc_req() local 261 crypt_len = skb->data + skb->len - encr; in fils_encrypt_assoc_req() 264 encr, crypt_len, 5, addr, len, encr); in fils_encrypt_assoc_req() 276 size_t crypt_len; in fils_decrypt_assoc_resp() local [all …]
|
/net/ceph/ |
D | crypto.c | 227 int crypt_len = encrypt ? in_len + pad_byte : in_len; in ceph_aes_crypt() local 230 WARN_ON(crypt_len > buf_len); in ceph_aes_crypt() 233 ret = setup_sgtable(&sgt, &prealloc_sg, buf, crypt_len); in ceph_aes_crypt() 240 skcipher_request_set_crypt(req, sgt.sgl, sgt.sgl, crypt_len, iv); in ceph_aes_crypt() 264 *pout_len = crypt_len; in ceph_aes_crypt()
|