blob: 58d83aa7740f64a68fc25dcbde06791f5ce17496 [file] [log] [blame]
Sage Weil8b6e4f22010-02-02 16:07:07 -08001#ifndef _FS_CEPH_CRYPTO_H
2#define _FS_CEPH_CRYPTO_H
3
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004#include <linux/ceph/types.h>
5#include <linux/ceph/buffer.h>
Sage Weil8b6e4f22010-02-02 16:07:07 -08006
7/*
8 * cryptographic secret
9 */
10struct ceph_crypto_key {
11 int type;
12 struct ceph_timespec created;
13 int len;
14 void *key;
Ilya Dryomovf77ef532016-12-02 16:35:08 +010015 struct crypto_skcipher *tfm;
Sage Weil8b6e4f22010-02-02 16:07:07 -080016};
17
Joe Perches348662a2013-10-18 13:48:22 -070018int 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);
Ilya Dryomov5b482bf2016-12-02 16:35:08 +010023void ceph_crypto_key_destroy(struct ceph_crypto_key *key);
Sage Weil8b6e4f22010-02-02 16:07:07 -080024
25/* crypto.c */
Ilya Dryomovecf7ced2016-12-02 16:35:07 +010026int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt,
27 void *buf, int buf_len, int in_len, int *pout_len);
Joe Perches348662a2013-10-18 13:48:22 -070028int ceph_crypto_init(void);
29void ceph_crypto_shutdown(void);
Sage Weil8b6e4f22010-02-02 16:07:07 -080030
31/* armor.c */
Joe Perches348662a2013-10-18 13:48:22 -070032int ceph_armor(char *dst, const char *src, const char *end);
33int ceph_unarmor(char *dst, const char *src, const char *end);
Sage Weil8b6e4f22010-02-02 16:07:07 -080034
35#endif