Searched refs:ciphertext_len (Results 1 – 1 of 1) sorted by relevance
/net/ceph/ |
D | auth_x.c | 61 int ciphertext_len; in ceph_x_encrypt() local 69 &ciphertext_len); in ceph_x_encrypt() 73 ceph_encode_32(&buf, ciphertext_len); in ceph_x_encrypt() 74 return sizeof(u32) + ciphertext_len; in ceph_x_encrypt() 78 int ciphertext_len) in __ceph_x_decrypt() argument 84 ret = ceph_crypt(secret, false, p, ciphertext_len, ciphertext_len, in __ceph_x_decrypt() 99 int ciphertext_len; in ceph_x_decrypt() local 102 ceph_decode_32_safe(p, end, ciphertext_len, e_inval); in ceph_x_decrypt() 103 ceph_decode_need(p, end, ciphertext_len, e_inval); in ceph_x_decrypt() 105 ret = __ceph_x_decrypt(secret, *p, ciphertext_len); in ceph_x_decrypt() [all …]
|