]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/ceph/crypto.h
KVM: SVM: Move spec control call after restore of GS
[mirror_ubuntu-artful-kernel.git] / net / ceph / crypto.h
CommitLineData
8b6e4f2d
SW
1#ifndef _FS_CEPH_CRYPTO_H
2#define _FS_CEPH_CRYPTO_H
3
3d14c5d2
YS
4#include <linux/ceph/types.h>
5#include <linux/ceph/buffer.h>
8b6e4f2d
SW
6
7/*
8 * cryptographic secret
9 */
10struct ceph_crypto_key {
11 int type;
12 struct ceph_timespec created;
13 int len;
14 void *key;
7af3ea18 15 struct crypto_skcipher *tfm;
8b6e4f2d
SW
16};
17
348662a1
JP
18int ceph_crypto_key_clone(struct ceph_crypto_key *dst,
19 const struct ceph_crypto_key *src);
20int ceph_crypto_key_encode(struct ceph_crypto_key *key, void **p, void *end);
21int ceph_crypto_key_decode(struct ceph_crypto_key *key, void **p, void *end);
22int ceph_crypto_key_unarmor(struct ceph_crypto_key *key, const char *in);
6db2304a 23void ceph_crypto_key_destroy(struct ceph_crypto_key *key);
8b6e4f2d
SW
24
25/* crypto.c */
a45f795c
ID
26int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt,
27 void *buf, int buf_len, int in_len, int *pout_len);
348662a1
JP
28int ceph_crypto_init(void);
29void ceph_crypto_shutdown(void);
8b6e4f2d
SW
30
31/* armor.c */
348662a1
JP
32int ceph_armor(char *dst, const char *src, const char *end);
33int ceph_unarmor(char *dst, const char *src, const char *end);
8b6e4f2d
SW
34
35#endif