mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-02 02:31:10 +00:00
Improve some comments, fix some typos
This commit is contained in:
parent
3f0f972ac5
commit
b119d40fa9
|
@ -287,7 +287,7 @@ int mbedtls_x509_crt_verify_info( char *buf, size_t size, const char *prefix,
|
||||||
* chaining up to those CAs will be trusted, and (2)
|
* chaining up to those CAs will be trusted, and (2)
|
||||||
* self-signed end-entity certificates to be trusted (for
|
* self-signed end-entity certificates to be trusted (for
|
||||||
* specific peers you know) - in that case, the self-signed
|
* specific peers you know) - in that case, the self-signed
|
||||||
* certificate doens't need to have the CA bit set.
|
* certificate doesn't need to have the CA bit set.
|
||||||
*
|
*
|
||||||
* \param crt a certificate (chain) to be verified
|
* \param crt a certificate (chain) to be verified
|
||||||
* \param trust_ca the list of trusted CAs (see note above)
|
* \param trust_ca the list of trusted CAs (see note above)
|
||||||
|
|
|
@ -6,9 +6,10 @@
|
||||||
#
|
#
|
||||||
# Purpose
|
# Purpose
|
||||||
#
|
#
|
||||||
# To test the code dependencies on individual PK algs in each test suite. This
|
# To test the code dependencies on individual PK algs (those that can be used
|
||||||
# is a verification step to ensure we don't ship test suites that do not work
|
# from the PK layer, so currently signature and encryption but not key
|
||||||
# for some build options.
|
# exchange) in each test suite. This is a verification step to ensure we don't
|
||||||
|
# ship test suites that do not work for some build options.
|
||||||
#
|
#
|
||||||
# The process is:
|
# The process is:
|
||||||
# for each possible PK alg
|
# for each possible PK alg
|
||||||
|
@ -38,6 +39,8 @@ my $ssl_sed = 's/^#define \(MBEDTLS_SSL.*\)/\1/p';
|
||||||
my $kex_sed = 's/^#define \(MBEDTLS_KEY_EXCHANGE.*\)/\1/p';
|
my $kex_sed = 's/^#define \(MBEDTLS_KEY_EXCHANGE.*\)/\1/p';
|
||||||
my @ssl = split( /\s+/, `sed -n -e '$ssl_sed' -e '$kex_sed' $config_h` );
|
my @ssl = split( /\s+/, `sed -n -e '$ssl_sed' -e '$kex_sed' $config_h` );
|
||||||
|
|
||||||
|
# Some algorithms can't be disabled on their own as others depend on them, so
|
||||||
|
# we list those reverse-dependencies here to keep check_config.h happy.
|
||||||
my %algs = (
|
my %algs = (
|
||||||
'MBEDTLS_ECDSA_C' => [],
|
'MBEDTLS_ECDSA_C' => [],
|
||||||
'MBEDTLS_ECP_C' => ['MBEDTLS_ECDSA_C', 'MBEDTLS_ECDH_C'],
|
'MBEDTLS_ECP_C' => ['MBEDTLS_ECDSA_C', 'MBEDTLS_ECDH_C'],
|
||||||
|
|
Loading…
Reference in a new issue