Sage Weil | 8b6e4f2 | 2010-02-02 16:07:07 -0800 | [diff] [blame] | 1 | #ifndef _FS_CEPH_CRYPTO_H |
| 2 | #define _FS_CEPH_CRYPTO_H |
| 3 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 4 | #include <linux/ceph/types.h> |
| 5 | #include <linux/ceph/buffer.h> |
Sage Weil | 8b6e4f2 | 2010-02-02 16:07:07 -0800 | [diff] [blame] | 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; |
Ilya Dryomov | f77ef53 | 2016-12-02 16:35:08 +0100 | [diff] [blame] | 15 | struct crypto_skcipher *tfm; |
Sage Weil | 8b6e4f2 | 2010-02-02 16:07:07 -0800 | [diff] [blame] | 16 | }; |
| 17 | |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 18 | int ceph_crypto_key_clone(struct ceph_crypto_key *dst, |
| 19 | const struct ceph_crypto_key *src); |
| 20 | int ceph_crypto_key_encode(struct ceph_crypto_key *key, void **p, void *end); |
| 21 | int ceph_crypto_key_decode(struct ceph_crypto_key *key, void **p, void *end); |
| 22 | int ceph_crypto_key_unarmor(struct ceph_crypto_key *key, const char *in); |
Ilya Dryomov | 5b482bf | 2016-12-02 16:35:08 +0100 | [diff] [blame] | 23 | void ceph_crypto_key_destroy(struct ceph_crypto_key *key); |
Sage Weil | 8b6e4f2 | 2010-02-02 16:07:07 -0800 | [diff] [blame] | 24 | |
| 25 | /* crypto.c */ |
Ilya Dryomov | ecf7ced | 2016-12-02 16:35:07 +0100 | [diff] [blame] | 26 | int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt, |
| 27 | void *buf, int buf_len, int in_len, int *pout_len); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 28 | int ceph_crypto_init(void); |
| 29 | void ceph_crypto_shutdown(void); |
Sage Weil | 8b6e4f2 | 2010-02-02 16:07:07 -0800 | [diff] [blame] | 30 | |
| 31 | /* armor.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 32 | int ceph_armor(char *dst, const char *src, const char *end); |
| 33 | int ceph_unarmor(char *dst, const char *src, const char *end); |
Sage Weil | 8b6e4f2 | 2010-02-02 16:07:07 -0800 | [diff] [blame] | 34 | |
| 35 | #endif |