Lines Matching refs:ciphertext_len
89 int ciphertext_len; in ceph_x_encrypt() local
98 &ciphertext_len); in ceph_x_encrypt()
102 ceph_encode_32(&buf, ciphertext_len); in ceph_x_encrypt()
103 return sizeof(u32) + ciphertext_len; in ceph_x_encrypt()
107 void *p, int ciphertext_len) in __ceph_x_decrypt() argument
113 ret = ceph_crypt(key, usage_slot, false, p, ciphertext_len, in __ceph_x_decrypt()
114 ciphertext_len, &plaintext_len); in __ceph_x_decrypt()
130 int ciphertext_len; in ceph_x_decrypt() local
133 ceph_decode_32_safe(p, end, ciphertext_len, e_inval); in ceph_x_decrypt()
134 ceph_decode_need(p, end, ciphertext_len, e_inval); in ceph_x_decrypt()
136 ret = __ceph_x_decrypt(key, usage_slot, *p, ciphertext_len); in ceph_x_decrypt()
140 *p += ciphertext_len; in ceph_x_decrypt()
1093 int ciphertext_len; /* unused */ in calc_signature() local
1097 sizeof(*sigblock), &ciphertext_len); in calc_signature()