mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 17:15:42 +01:00
Fixed typos
This commit is contained in:
parent
db34e6d9b6
commit
6152b0267c
@ -88,7 +88,7 @@ Features
|
|||||||
length of an X.509 verification chain.
|
length of an X.509 verification chain.
|
||||||
* Support for renegotiation can now be disabled at compile-time
|
* Support for renegotiation can now be disabled at compile-time
|
||||||
* Support for 1/n-1 record splitting, a countermeasure against BEAST.
|
* Support for 1/n-1 record splitting, a countermeasure against BEAST.
|
||||||
* Certificate selection based on signature hash, prefering SHA-1 over SHA-2
|
* Certificate selection based on signature hash, preferring SHA-1 over SHA-2
|
||||||
for pre-1.2 clients when multiple certificates are available.
|
for pre-1.2 clients when multiple certificates are available.
|
||||||
* Add support for getrandom() syscall on recent Linux kernels with Glibc or
|
* Add support for getrandom() syscall on recent Linux kernels with Glibc or
|
||||||
a compatible enough libc (eg uClibc).
|
a compatible enough libc (eg uClibc).
|
||||||
|
@ -68,7 +68,7 @@ There are many different build modes available within the CMake buildsystem. Mos
|
|||||||
- ASanDbg.
|
- ASanDbg.
|
||||||
Same as ASan but slower, with debug information and better stack traces.
|
Same as ASan but slower, with debug information and better stack traces.
|
||||||
- MemSan.
|
- MemSan.
|
||||||
This intruments the code with MemorySanitizer to check for uninitialised
|
This instruments the code with MemorySanitizer to check for uninitialised
|
||||||
memory reads. Experimental, needs recent clang on Linux/x86_64.
|
memory reads. Experimental, needs recent clang on Linux/x86_64.
|
||||||
- MemSanDbg.
|
- MemSanDbg.
|
||||||
Same as ASan but slower, with debug information, better stack traces and
|
Same as ASan but slower, with debug information, better stack traces and
|
||||||
|
@ -642,7 +642,7 @@ int ecp_gen_key( ecp_group_id grp_id, ecp_keypair *key,
|
|||||||
* \param pub Keypair structure holding a public key
|
* \param pub Keypair structure holding a public key
|
||||||
* \param prv Keypair structure holding a private (plus public) key
|
* \param prv Keypair structure holding a private (plus public) key
|
||||||
*
|
*
|
||||||
* \return 0 if successfull (keys are valid and match), or
|
* \return 0 if successful (keys are valid and match), or
|
||||||
* POLARSSL_ERR_ECP_BAD_INPUT_DATA, or
|
* POLARSSL_ERR_ECP_BAD_INPUT_DATA, or
|
||||||
* a POLARSSL_ERR_ECP_XXX or POLARSSL_ERR_MPI_XXX code.
|
* a POLARSSL_ERR_ECP_XXX or POLARSSL_ERR_MPI_XXX code.
|
||||||
*/
|
*/
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#include POLARSSL_CONFIG_FILE
|
#include POLARSSL_CONFIG_FILE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Temporary compability hack for to keep MEMORY_C working */
|
/* Temporary compatibility hack for to keep MEMORY_C working */
|
||||||
#if defined(POLARSSL_MEMORY_C) && !defined(POLARSSL_PLATFORM_MEMORY)
|
#if defined(POLARSSL_MEMORY_C) && !defined(POLARSSL_PLATFORM_MEMORY)
|
||||||
#define POLARSSL_PLATFORM_MEMORY
|
#define POLARSSL_PLATFORM_MEMORY
|
||||||
#endif
|
#endif
|
||||||
|
@ -96,7 +96,7 @@ cleanup:
|
|||||||
|
|
||||||
if( ret != 0 )
|
if( ret != 0 )
|
||||||
{
|
{
|
||||||
polarssl_printf( "\nAn error occured.\n" );
|
polarssl_printf( "\nAn error occurred.\n" );
|
||||||
ret = 1;
|
ret = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Measure heap usage (and perfomance) of ECC operations with various values of
|
# Measure heap usage (and performance) of ECC operations with various values of
|
||||||
# the relevant tunable compile-time parameters.
|
# the relevant tunable compile-time parameters.
|
||||||
#
|
#
|
||||||
# Usage (preferably on a 32-bit platform):
|
# Usage (preferably on a 32-bit platform):
|
||||||
|
@ -73,7 +73,7 @@ Certificate revocation lists
|
|||||||
Signing CA in parentheses (same meaning as certificates).
|
Signing CA in parentheses (same meaning as certificates).
|
||||||
|
|
||||||
- crl-ec-sha*: (2) server6.crt
|
- crl-ec-sha*: (2) server6.crt
|
||||||
- crl-future.pem: (2) server6.crt + unkown
|
- crl-future.pem: (2) server6.crt + unknown
|
||||||
- crl-rsa-pss-*.pem: (1) server9{,badsign,with-ca}.crt + cert_sha384.crt + unknown
|
- crl-rsa-pss-*.pem: (1) server9{,badsign,with-ca}.crt + cert_sha384.crt + unknown
|
||||||
- crl.pem, crl_expired.pem: (1) server1{,.cert_type,.key_usage,.v1}.crt + unknown
|
- crl.pem, crl_expired.pem: (1) server1{,.cert_type,.key_usage,.v1}.crt + unknown
|
||||||
- crl_md*.pem: crl_sha*.pem: (1) same as crl.pem
|
- crl_md*.pem: crl_sha*.pem: (1) same as crl.pem
|
||||||
|
Loading…
Reference in New Issue
Block a user