]> asedeno.scripts.mit.edu Git - linux.git/blob - net/ceph/crypto.h
libceph: remove now unused ceph_*{en,de}crypt*() functions
[linux.git] / net / ceph / crypto.h
1 #ifndef _FS_CEPH_CRYPTO_H
2 #define _FS_CEPH_CRYPTO_H
3
4 #include <linux/ceph/types.h>
5 #include <linux/ceph/buffer.h>
6
7 /*
8  * cryptographic secret
9  */
10 struct ceph_crypto_key {
11         int type;
12         struct ceph_timespec created;
13         int len;
14         void *key;
15 };
16
17 static inline void ceph_crypto_key_destroy(struct ceph_crypto_key *key)
18 {
19         if (key) {
20                 kfree(key->key);
21                 key->key = NULL;
22         }
23 }
24
25 int ceph_crypto_key_clone(struct ceph_crypto_key *dst,
26                           const struct ceph_crypto_key *src);
27 int ceph_crypto_key_encode(struct ceph_crypto_key *key, void **p, void *end);
28 int ceph_crypto_key_decode(struct ceph_crypto_key *key, void **p, void *end);
29 int ceph_crypto_key_unarmor(struct ceph_crypto_key *key, const char *in);
30
31 /* crypto.c */
32 int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt,
33                void *buf, int buf_len, int in_len, int *pout_len);
34 int ceph_crypto_init(void);
35 void ceph_crypto_shutdown(void);
36
37 /* armor.c */
38 int ceph_armor(char *dst, const char *src, const char *end);
39 int ceph_unarmor(char *dst, const char *src, const char *end);
40
41 #endif