Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / common / armor.h
1 #ifndef CEPH_ARMOR_H
2 #define CEPH_ARMOR_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 int ceph_armor(char *dst, const char *dst_end,
9                const char *src, const char *end);
10
11 int ceph_armor_linebreak(char *dst, const char *dst_end,
12                const char *src, const char *end,
13                int line_width);
14 int ceph_unarmor(char *dst, const char *dst_end,
15                  const char *src, const char *end);
16 #ifdef __cplusplus
17 }
18 #endif
19
20 #endif