blob: 16fe75a2be378cbf868b1b486b9a9f21ec7bab25 [file] [log] [blame]
Paul Bakker37ca75d2011-01-06 12:28:03 +00001/**
2 * @file
3 * X.509 module documentation file.
4 */
5
6/**
7 * @addtogroup x509_module X.509 module
8 *
9 * The X.509 module provides X.509 support which includes:
10 * - X.509 certificate (CRT) reading (see \c x509parse_crt() and
11 * \c x509parse_crtfile()).
12 * - X.509 certificate revocation list (CRL) reading (see \c x509parse_crl()
13 * and\c x509parse_crlfile()).
Manuel Pégourié-Gonnardba4878a2013-06-27 10:51:01 +020014 * - X.509 (RSA) private key reading (see \c x509parse_key_rsa() and
15 * \c x509parse_keyfile_rsa()).
Paul Bakker37ca75d2011-01-06 12:28:03 +000016 * - X.509 certificate signature verification (see \c x509parse_verify())
17 *
18 * This module can be used to build a certificate authority (CA) chain and
19 * verify its signature. It is also used to get a (RSA) private key for signing
20 * and decryption.
21 */