asymmetric-parser.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* Asymmetric public-key cryptography data parser
  2. *
  3. * See Documentation/crypto/asymmetric-keys.txt
  4. *
  5. * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
  6. * Written by David Howells (dhowells@redhat.com)
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public Licence
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the Licence, or (at your option) any later version.
  12. */
  13. #ifndef _KEYS_ASYMMETRIC_PARSER_H
  14. #define _KEYS_ASYMMETRIC_PARSER_H
  15. /*
  16. * Key data parser. Called during key instantiation.
  17. */
  18. struct asymmetric_key_parser {
  19. struct list_head link;
  20. struct module *owner;
  21. const char *name;
  22. /* Attempt to parse a key from the data blob passed to add_key() or
  23. * keyctl_instantiate(). Should also generate a proposed description
  24. * that the caller can optionally use for the key.
  25. *
  26. * Return EBADMSG if not recognised.
  27. */
  28. int (*parse)(struct key_preparsed_payload *prep);
  29. };
  30. extern int register_asymmetric_key_parser(struct asymmetric_key_parser *);
  31. extern void unregister_asymmetric_key_parser(struct asymmetric_key_parser *);
  32. #endif /* _KEYS_ASYMMETRIC_PARSER_H */