pkcs7.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* PKCS#7 crypto data parser
  2. *
  3. * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _CRYPTO_PKCS7_H
  12. #define _CRYPTO_PKCS7_H
  13. #include <linux/verification.h>
  14. #include <crypto/public_key.h>
  15. struct key;
  16. struct pkcs7_message;
  17. /*
  18. * pkcs7_parser.c
  19. */
  20. extern struct pkcs7_message *pkcs7_parse_message(const void *data,
  21. size_t datalen);
  22. extern void pkcs7_free_message(struct pkcs7_message *pkcs7);
  23. extern int pkcs7_get_content_data(const struct pkcs7_message *pkcs7,
  24. const void **_data, size_t *_datalen,
  25. size_t *_headerlen);
  26. /*
  27. * pkcs7_trust.c
  28. */
  29. extern int pkcs7_validate_trust(struct pkcs7_message *pkcs7,
  30. struct key *trust_keyring);
  31. /*
  32. * pkcs7_verify.c
  33. */
  34. extern int pkcs7_verify(struct pkcs7_message *pkcs7,
  35. enum key_being_used_for usage);
  36. extern int pkcs7_supply_detached_data(struct pkcs7_message *pkcs7,
  37. const void *data, size_t datalen);
  38. #endif /* _CRYPTO_PKCS7_H */