x509_parser.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* X.509 certificate parser internal definitions
  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. #include <crypto/public_key.h>
  12. struct x509_certificate {
  13. struct x509_certificate *next;
  14. struct public_key *pub; /* Public key details */
  15. char *issuer; /* Name of certificate issuer */
  16. char *subject; /* Name of certificate subject */
  17. char *fingerprint; /* Key fingerprint as hex */
  18. char *authority; /* Authority key fingerprint as hex */
  19. struct tm valid_from;
  20. struct tm valid_to;
  21. enum pkey_algo pkey_algo : 8; /* Public key algorithm */
  22. enum pkey_algo sig_pkey_algo : 8; /* Signature public key algorithm */
  23. enum pkey_hash_algo sig_hash_algo : 8; /* Signature hash algorithm */
  24. const void *tbs; /* Signed data */
  25. size_t tbs_size; /* Size of signed data */
  26. const void *sig; /* Signature data */
  27. size_t sig_size; /* Size of sigature */
  28. };
  29. /*
  30. * x509_cert_parser.c
  31. */
  32. extern void x509_free_certificate(struct x509_certificate *cert);
  33. extern struct x509_certificate *x509_cert_parse(const void *data, size_t datalen);