|
139 | 139 | *
|
140 | 140 | * System has time.h, time(), and an implementation for
|
141 | 141 | * mbedtls_platform_gmtime_r() (see below).
|
142 |
| - * The time needs to be correct (not necesarily very accurate, but at least |
| 142 | + * The time needs to be correct (not necessarily very accurate, but at least |
143 | 143 | * the date should be correct). This is used to verify the validity period of
|
144 | 144 | * X.509 certificates.
|
145 | 145 | *
|
|
401 | 401 | * \note Because of a signature change, the core AES encryption and decryption routines are
|
402 | 402 | * currently named mbedtls_aes_internal_encrypt and mbedtls_aes_internal_decrypt,
|
403 | 403 | * respectively. When setting up alternative implementations, these functions should
|
404 |
| - * be overriden, but the wrapper functions mbedtls_aes_decrypt and mbedtls_aes_encrypt |
| 404 | + * be overridden, but the wrapper functions mbedtls_aes_decrypt and mbedtls_aes_encrypt |
405 | 405 | * must stay untouched.
|
406 | 406 | *
|
407 | 407 | * \note If you use the AES_xxx_ALT macros, then is is recommended to also set
|
|
1558 | 1558 | * \def MBEDTLS_SSL_SESSION_TICKETS
|
1559 | 1559 | *
|
1560 | 1560 | * Enable support for RFC 5077 session tickets in SSL.
|
1561 |
| - * Client-side, provides full support for session tickets (maintainance of a |
| 1561 | + * Client-side, provides full support for session tickets (maintenance of a |
1562 | 1562 | * session store remains the responsibility of the application, though).
|
1563 | 1563 | * Server-side, you also need to provide callbacks for writing and parsing
|
1564 | 1564 | * tickets, including authenticated encryption and key management. Example
|
|
1724 | 1724 | *
|
1725 | 1725 | * \warning TLS-level compression MAY REDUCE SECURITY! See for example the
|
1726 | 1726 | * CRIME attack. Before enabling this option, you should examine with care if
|
1727 |
| - * CRIME or similar exploits may be a applicable to your use case. |
| 1727 | + * CRIME or similar exploits may be applicable to your use case. |
1728 | 1728 | *
|
1729 | 1729 | * \note Currently compression can't be used with DTLS.
|
1730 | 1730 | *
|
|
3036 | 3036 | //#define MBEDTLS_PLATFORM_STD_TIME time /**< Default time to use, can be undefined. MBEDTLS_HAVE_TIME must be enabled */
|
3037 | 3037 | //#define MBEDTLS_PLATFORM_STD_FPRINTF fprintf /**< Default fprintf to use, can be undefined */
|
3038 | 3038 | //#define MBEDTLS_PLATFORM_STD_PRINTF printf /**< Default printf to use, can be undefined */
|
3039 |
| -/* Note: your snprintf must correclty zero-terminate the buffer! */ |
| 3039 | +/* Note: your snprintf must correctly zero-terminate the buffer! */ |
3040 | 3040 | //#define MBEDTLS_PLATFORM_STD_SNPRINTF snprintf /**< Default snprintf to use, can be undefined */
|
3041 | 3041 | //#define MBEDTLS_PLATFORM_STD_EXIT_SUCCESS 0 /**< Default exit value to use, can be undefined */
|
3042 | 3042 | //#define MBEDTLS_PLATFORM_STD_EXIT_FAILURE 1 /**< Default exit value to use, can be undefined */
|
|
3053 | 3053 | //#define MBEDTLS_PLATFORM_TIME_TYPE_MACRO time_t /**< Default time macro to use, can be undefined. MBEDTLS_HAVE_TIME must be enabled */
|
3054 | 3054 | //#define MBEDTLS_PLATFORM_FPRINTF_MACRO fprintf /**< Default fprintf macro to use, can be undefined */
|
3055 | 3055 | //#define MBEDTLS_PLATFORM_PRINTF_MACRO printf /**< Default printf macro to use, can be undefined */
|
3056 |
| -/* Note: your snprintf must correclty zero-terminate the buffer! */ |
| 3056 | +/* Note: your snprintf must correctly zero-terminate the buffer! */ |
3057 | 3057 | //#define MBEDTLS_PLATFORM_SNPRINTF_MACRO snprintf /**< Default snprintf macro to use, can be undefined */
|
3058 | 3058 | //#define MBEDTLS_PLATFORM_NV_SEED_READ_MACRO mbedtls_platform_std_nv_seed_read /**< Default nv_seed_read function to use, can be undefined */
|
3059 | 3059 | //#define MBEDTLS_PLATFORM_NV_SEED_WRITE_MACRO mbedtls_platform_std_nv_seed_write /**< Default nv_seed_write function to use, can be undefined */
|
|
0 commit comments