]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
8b6e4f2d SW |
2 | #ifndef _FS_CEPH_CRYPTO_H |
3 | #define _FS_CEPH_CRYPTO_H | |
4 | ||
3d14c5d2 YS |
5 | #include <linux/ceph/types.h> |
6 | #include <linux/ceph/buffer.h> | |
8b6e4f2d SW |
7 | |
8 | /* | |
9 | * cryptographic secret | |
10 | */ | |
11 | struct ceph_crypto_key { | |
12 | int type; | |
13 | struct ceph_timespec created; | |
14 | int len; | |
15 | void *key; | |
69d6302b | 16 | struct crypto_sync_skcipher *tfm; |
8b6e4f2d SW |
17 | }; |
18 | ||
348662a1 JP |
19 | int ceph_crypto_key_clone(struct ceph_crypto_key *dst, |
20 | const struct ceph_crypto_key *src); | |
21 | int ceph_crypto_key_encode(struct ceph_crypto_key *key, void **p, void *end); | |
22 | int ceph_crypto_key_decode(struct ceph_crypto_key *key, void **p, void *end); | |
23 | int ceph_crypto_key_unarmor(struct ceph_crypto_key *key, const char *in); | |
6db2304a | 24 | void ceph_crypto_key_destroy(struct ceph_crypto_key *key); |
8b6e4f2d SW |
25 | |
26 | /* crypto.c */ | |
a45f795c ID |
27 | int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt, |
28 | void *buf, int buf_len, int in_len, int *pout_len); | |
348662a1 JP |
29 | int ceph_crypto_init(void); |
30 | void ceph_crypto_shutdown(void); | |
8b6e4f2d SW |
31 | |
32 | /* armor.c */ | |
348662a1 JP |
33 | int ceph_armor(char *dst, const char *src, const char *end); |
34 | int ceph_unarmor(char *dst, const char *src, const char *end); | |
8b6e4f2d SW |
35 | |
36 | #endif |