doc_x509.h 737 B

123456789101112131415161718192021
  1. /**
  2. * @file
  3. * X.509 module documentation file.
  4. */
  5. /**
  6. * @addtogroup x509_module X.509 module
  7. *
  8. * The X.509 module provides X.509 support which includes:
  9. * - X.509 certificate (CRT) reading (see \c x509parse_crt() and
  10. * \c x509parse_crtfile()).
  11. * - X.509 certificate revocation list (CRL) reading (see \c x509parse_crl()
  12. * and\c x509parse_crlfile()).
  13. * - X.509 (RSA) private key reading (see \c x509parse_key() and
  14. * \c x509parse_keyfile()).
  15. * - X.509 certificate signature verification (see \c x509parse_verify())
  16. *
  17. * This module can be used to build a certificate authority (CA) chain and
  18. * verify its signature. It is also used to get a (RSA) private key for signing
  19. * and decryption.
  20. */