Lines Matching defs:ciphertext_len
58 int ciphertext_len;
66 &ciphertext_len);
70 ceph_encode_32(&buf, ciphertext_len);
71 return sizeof(u32) + ciphertext_len;
75 int ciphertext_len)
81 ret = ceph_crypt(secret, false, p, ciphertext_len, ciphertext_len,
96 int ciphertext_len;
99 ceph_decode_32_safe(p, end, ciphertext_len, e_inval);
100 ceph_decode_need(p, end, ciphertext_len, e_inval);
102 ret = __ceph_x_decrypt(secret, *p, ciphertext_len);
106 *p += ciphertext_len;
846 int ciphertext_len;
860 &ciphertext_len);