blob: d1498224c49d4c6c18e082ea908cb3e5a8fed30c [file] [log] [blame]
Sage Weil8b6e4f22010-02-02 16:07:07 -08001#ifndef _FS_CEPH_CRYPTO_H
2#define _FS_CEPH_CRYPTO_H
3
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004#include <linux/ceph/types.h>
5#include <linux/ceph/buffer.h>
Sage Weil8b6e4f22010-02-02 16:07:07 -08006
7/*
8 * cryptographic secret
9 */
10struct ceph_crypto_key {
11 int type;
12 struct ceph_timespec created;
13 int len;
14 void *key;
15};
16
17static inline void ceph_crypto_key_destroy(struct ceph_crypto_key *key)
18{
Sylvain Munautf0666b12012-08-02 09:12:59 -070019 if (key)
20 kfree(key->key);
Sage Weil8b6e4f22010-02-02 16:07:07 -080021}
22
Joe Perches348662a2013-10-18 13:48:22 -070023int ceph_crypto_key_clone(struct ceph_crypto_key *dst,
24 const struct ceph_crypto_key *src);
25int ceph_crypto_key_encode(struct ceph_crypto_key *key, void **p, void *end);
26int ceph_crypto_key_decode(struct ceph_crypto_key *key, void **p, void *end);
27int ceph_crypto_key_unarmor(struct ceph_crypto_key *key, const char *in);
Sage Weil8b6e4f22010-02-02 16:07:07 -080028
29/* crypto.c */
Joe Perches348662a2013-10-18 13:48:22 -070030int ceph_decrypt(struct ceph_crypto_key *secret,
31 void *dst, size_t *dst_len,
32 const void *src, size_t src_len);
33int ceph_encrypt(struct ceph_crypto_key *secret,
34 void *dst, size_t *dst_len,
35 const void *src, size_t src_len);
36int ceph_decrypt2(struct ceph_crypto_key *secret,
37 void *dst1, size_t *dst1_len,
38 void *dst2, size_t *dst2_len,
39 const void *src, size_t src_len);
40int ceph_encrypt2(struct ceph_crypto_key *secret,
41 void *dst, size_t *dst_len,
42 const void *src1, size_t src1_len,
43 const void *src2, size_t src2_len);
44int ceph_crypto_init(void);
45void ceph_crypto_shutdown(void);
Sage Weil8b6e4f22010-02-02 16:07:07 -080046
47/* armor.c */
Joe Perches348662a2013-10-18 13:48:22 -070048int ceph_armor(char *dst, const char *src, const char *end);
49int ceph_unarmor(char *dst, const char *src, const char *end);
Sage Weil8b6e4f22010-02-02 16:07:07 -080050
51#endif