crypto.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _FS_CEPH_CRYPTO_H
  3. #define _FS_CEPH_CRYPTO_H
  4. #include <linux/ceph/types.h>
  5. #include <linux/ceph/buffer.h>
  6. #define CEPH_KEY_LEN 16
  7. #define CEPH_MAX_CON_SECRET_LEN 64
  8. /*
  9. * cryptographic secret
  10. */
  11. struct ceph_crypto_key {
  12. int type;
  13. struct ceph_timespec created;
  14. int len;
  15. void *key;
  16. struct crypto_sync_skcipher *tfm;
  17. };
  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);
  23. void ceph_crypto_key_destroy(struct ceph_crypto_key *key);
  24. /* crypto.c */
  25. int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt,
  26. void *buf, int buf_len, int in_len, int *pout_len);
  27. int ceph_crypto_init(void);
  28. void ceph_crypto_shutdown(void);
  29. /* armor.c */
  30. int ceph_armor(char *dst, const char *src, const char *end);
  31. int ceph_unarmor(char *dst, const char *src, const char *end);
  32. #endif