Lines Matching defs:ciphertext_len
61 int ciphertext_len;
69 &ciphertext_len);
73 ceph_encode_32(&buf, ciphertext_len);
74 return sizeof(u32) + ciphertext_len;
78 int ciphertext_len)
84 ret = ceph_crypt(secret, false, p, ciphertext_len, ciphertext_len,
99 int ciphertext_len;
102 ceph_decode_32_safe(p, end, ciphertext_len, e_inval);
103 ceph_decode_need(p, end, ciphertext_len, e_inval);
105 ret = __ceph_x_decrypt(secret, *p, ciphertext_len);
109 *p += ciphertext_len;
1003 int ciphertext_len;
1017 &ciphertext_len);