blob: 11fb000cae52a1477a554a7c249e1c02ac62738b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef CEPH_CRYPTO_CMS_H
#define CEPH_CRYPTO_CMS_H
#include "include/buffer_fwd.h"
class CephContext;
int ceph_decode_cms(CephContext *cct, bufferlist& cms_bl, bufferlist& decoded_bl);
#endif
|