crypto.h 972 字节
Newer Older
1 2 3
#ifndef _FS_CEPH_CRYPTO_H
#define _FS_CEPH_CRYPTO_H

4 5
#include <linux/ceph/types.h>
#include <linux/ceph/buffer.h>
6 7 8 9 10 11 12 13 14 15 16

/*
 * cryptographic secret
 */
struct ceph_crypto_key {
	int type;
	struct ceph_timespec created;
	int len;
	void *key;
};

17 18 19 20 21
int ceph_crypto_key_clone(struct ceph_crypto_key *dst,
			  const struct ceph_crypto_key *src);
int ceph_crypto_key_encode(struct ceph_crypto_key *key, void **p, void *end);
int ceph_crypto_key_decode(struct ceph_crypto_key *key, void **p, void *end);
int ceph_crypto_key_unarmor(struct ceph_crypto_key *key, const char *in);
22
void ceph_crypto_key_destroy(struct ceph_crypto_key *key);
23 24

/* crypto.c */
25 26
int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt,
	       void *buf, int buf_len, int in_len, int *pout_len);
27 28
int ceph_crypto_init(void);
void ceph_crypto_shutdown(void);
29 30

/* armor.c */
31 32
int ceph_armor(char *dst, const char *src, const char *end);
int ceph_unarmor(char *dst, const char *src, const char *end);
33 34

#endif