algapi.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Cryptographic API for algorithms (i.e., low-level API).
  3. *
  4. * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation; either version 2 of the License, or (at your option)
  9. * any later version.
  10. *
  11. */
  12. #ifndef _CRYPTO_ALGAPI_H
  13. #define _CRYPTO_ALGAPI_H
  14. #include <linux/crypto.h>
  15. struct module;
  16. struct seq_file;
  17. struct crypto_type {
  18. unsigned int (*ctxsize)(struct crypto_alg *alg);
  19. int (*init)(struct crypto_tfm *tfm);
  20. void (*exit)(struct crypto_tfm *tfm);
  21. void (*show)(struct seq_file *m, struct crypto_alg *alg);
  22. };
  23. struct crypto_instance {
  24. struct crypto_alg alg;
  25. struct crypto_template *tmpl;
  26. struct hlist_node list;
  27. void *__ctx[] CRYPTO_MINALIGN_ATTR;
  28. };
  29. struct crypto_template {
  30. struct list_head list;
  31. struct hlist_head instances;
  32. struct module *module;
  33. struct crypto_instance *(*alloc)(void *param, unsigned int len);
  34. void (*free)(struct crypto_instance *inst);
  35. char name[CRYPTO_MAX_ALG_NAME];
  36. };
  37. struct crypto_spawn {
  38. struct list_head list;
  39. struct crypto_alg *alg;
  40. struct crypto_instance *inst;
  41. };
  42. int crypto_register_template(struct crypto_template *tmpl);
  43. void crypto_unregister_template(struct crypto_template *tmpl);
  44. struct crypto_template *crypto_lookup_template(const char *name);
  45. int crypto_init_spawn(struct crypto_spawn *spawn, struct crypto_alg *alg,
  46. struct crypto_instance *inst);
  47. void crypto_drop_spawn(struct crypto_spawn *spawn);
  48. struct crypto_tfm *crypto_spawn_tfm(struct crypto_spawn *spawn);
  49. struct crypto_alg *crypto_get_attr_alg(void *param, unsigned int len,
  50. u32 type, u32 mask);
  51. struct crypto_instance *crypto_alloc_instance(const char *name,
  52. struct crypto_alg *alg);
  53. static inline void *crypto_instance_ctx(struct crypto_instance *inst)
  54. {
  55. return inst->__ctx;
  56. }
  57. #endif /* _CRYPTO_ALGAPI_H */