summaryrefslogtreecommitdiff
path: root/src/common/armor.h
blob: cf9a63aa149745ecec3b1543c6e4aaba5b07880c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CEPH_ARMOR_H
#define CEPH_ARMOR_H

#ifdef __cplusplus
extern "C" {
#endif

int ceph_armor(char *dst, const char *dst_end,
	       const char *src, const char *end);
int ceph_unarmor(char *dst, const char *dst_end,
		 const char *src, const char *end);
#ifdef __cplusplus
}
#endif

#endif