2011-01-06 13:28:03 +01:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* X.509 module documentation file.
|
2015-08-06 10:59:26 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-08-06 10:59:26 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2015-08-06 10:59:26 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-08-06 10:59:26 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2015-08-06 10:59:26 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2011-01-06 13:28:03 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup x509_module X.509 module
|
2013-09-10 16:16:50 +02:00
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* The X.509 module provides X.509 support which includes:
|
|
|
|
* - X.509 certificate (CRT) reading (see \c x509parse_crt() and
|
|
|
|
* \c x509parse_crtfile()).
|
|
|
|
* - X.509 certificate revocation list (CRL) reading (see \c x509parse_crl()
|
|
|
|
* and\c x509parse_crlfile()).
|
2013-09-10 16:16:50 +02:00
|
|
|
* - X.509 (RSA and ECC) private key reading (see \c x509parse_key() and
|
|
|
|
* \c x509parse_keyfile()).
|
2011-01-06 13:28:03 +01:00
|
|
|
* - X.509 certificate signature verification (see \c x509parse_verify())
|
2013-09-10 16:16:50 +02:00
|
|
|
* - X.509 certificate writing and certificate request writing (see
|
2015-05-14 13:55:51 +02:00
|
|
|
* \c mbedtls_x509write_crt_der() and \c mbedtls_x509write_csr_der()).
|
2011-01-06 13:28:03 +01:00
|
|
|
*
|
|
|
|
* This module can be used to build a certificate authority (CA) chain and
|
2013-09-10 16:16:50 +02:00
|
|
|
* verify its signature. It is also used to generate Certificate Signing
|
|
|
|
* Requests and X509 certificates just as a CA would do.
|
2011-01-06 13:28:03 +01:00
|
|
|
*/
|