mbed TLS Build

Dependents:   Slave-prot-prod

Committer:
williequesada
Date:
Tue Jun 04 16:03:38 2019 +0000
Revision:
1:1a219dea6cb5
Parent:
0:cdf462088d13
compartir a Pablo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
markrad 0:cdf462088d13 1 /**
markrad 0:cdf462088d13 2 * @file
markrad 0:cdf462088d13 3 * X.509 module documentation file.
markrad 0:cdf462088d13 4 *
markrad 0:cdf462088d13 5 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
markrad 0:cdf462088d13 6 * SPDX-License-Identifier: Apache-2.0
markrad 0:cdf462088d13 7 *
markrad 0:cdf462088d13 8 * Licensed under the Apache License, Version 2.0 (the "License"); you may
markrad 0:cdf462088d13 9 * not use this file except in compliance with the License.
markrad 0:cdf462088d13 10 * You may obtain a copy of the License at
markrad 0:cdf462088d13 11 *
markrad 0:cdf462088d13 12 * http://www.apache.org/licenses/LICENSE-2.0
markrad 0:cdf462088d13 13 *
markrad 0:cdf462088d13 14 * Unless required by applicable law or agreed to in writing, software
markrad 0:cdf462088d13 15 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
markrad 0:cdf462088d13 16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
markrad 0:cdf462088d13 17 * See the License for the specific language governing permissions and
markrad 0:cdf462088d13 18 * limitations under the License.
markrad 0:cdf462088d13 19 *
markrad 0:cdf462088d13 20 * This file is part of mbed TLS (https://tls.mbed.org)
markrad 0:cdf462088d13 21 */
markrad 0:cdf462088d13 22
markrad 0:cdf462088d13 23 /**
markrad 0:cdf462088d13 24 * @addtogroup x509_module X.509 module
markrad 0:cdf462088d13 25 *
markrad 0:cdf462088d13 26 * The X.509 module provides X.509 support for reading, writing and verification
markrad 0:cdf462088d13 27 * of certificates.
markrad 0:cdf462088d13 28 * In summary:
markrad 0:cdf462088d13 29 * - X.509 certificate (CRT) reading (see \c mbedtls_x509_crt_parse(),
markrad 0:cdf462088d13 30 * \c mbedtls_x509_crt_parse_der(), \c mbedtls_x509_crt_parse_file()).
markrad 0:cdf462088d13 31 * - X.509 certificate revocation list (CRL) reading (see
markrad 0:cdf462088d13 32 * \c mbedtls_x509_crl_parse(), \c mbedtls_x509_crl_parse_der(),
markrad 0:cdf462088d13 33 * and \c mbedtls_x509_crl_parse_file()).
markrad 0:cdf462088d13 34 * - X.509 certificate signature verification (see \c
markrad 0:cdf462088d13 35 * mbedtls_x509_crt_verify() and \c mbedtls_x509_crt_verify_with_profile().
markrad 0:cdf462088d13 36 * - X.509 certificate writing and certificate request writing (see
markrad 0:cdf462088d13 37 * \c mbedtls_x509write_crt_der() and \c mbedtls_x509write_csr_der()).
markrad 0:cdf462088d13 38 *
markrad 0:cdf462088d13 39 * This module can be used to build a certificate authority (CA) chain and
markrad 0:cdf462088d13 40 * verify its signature. It is also used to generate Certificate Signing
markrad 0:cdf462088d13 41 * Requests and X.509 certificates just as a CA would do.
markrad 0:cdf462088d13 42 */