|
168 | 168 | *
|
169 | 169 | * Enable the memory allocation layer.
|
170 | 170 | *
|
171 |
| - * By default mbed TLS uses the system-provided calloc() and free(). |
| 171 | + * By default Mbed TLS uses the system-provided calloc() and free(). |
172 | 172 | * This allows different allocators (self-implemented or provided) to be
|
173 | 173 | * provided to the platform abstraction layer.
|
174 | 174 | *
|
|
241 | 241 | /**
|
242 | 242 | * \def MBEDTLS_PLATFORM_EXIT_ALT
|
243 | 243 | *
|
244 |
| - * MBEDTLS_PLATFORM_XXX_ALT: Uncomment a macro to let mbed TLS support the |
| 244 | + * MBEDTLS_PLATFORM_XXX_ALT: Uncomment a macro to let Mbed TLS support the |
245 | 245 | * function in the platform abstraction layer.
|
246 | 246 | *
|
247 |
| - * Example: In case you uncomment MBEDTLS_PLATFORM_PRINTF_ALT, mbed TLS will |
| 247 | + * Example: In case you uncomment MBEDTLS_PLATFORM_PRINTF_ALT, Mbed TLS will |
248 | 248 | * provide a function "mbedtls_platform_set_printf()" that allows you to set an
|
249 | 249 | * alternative printf function pointer.
|
250 | 250 | *
|
|
344 | 344 | /** \} name SECTION: System support */
|
345 | 345 |
|
346 | 346 | /**
|
347 |
| - * \name SECTION: mbed TLS feature support |
| 347 | + * \name SECTION: Mbed TLS feature support |
348 | 348 | *
|
349 | 349 | * This section sets support for features that are or are not needed
|
350 | 350 | * within the modules that are enabled.
|
|
367 | 367 | /**
|
368 | 368 | * \def MBEDTLS_AES_ALT
|
369 | 369 | *
|
370 |
| - * MBEDTLS__MODULE_NAME__ALT: Uncomment a macro to let mbed TLS use your |
| 370 | + * MBEDTLS__MODULE_NAME__ALT: Uncomment a macro to let Mbed TLS use your |
371 | 371 | * alternate core implementation of a symmetric crypto, an arithmetic or hash
|
372 | 372 | * module (e.g. platform specific assembly optimized implementations). Keep
|
373 | 373 | * in mind that the function prototypes should remain the same.
|
374 | 374 | *
|
375 | 375 | * This replaces the whole module. If you only want to replace one of the
|
376 | 376 | * functions, use one of the MBEDTLS__FUNCTION_NAME__ALT flags.
|
377 | 377 | *
|
378 |
| - * Example: In case you uncomment MBEDTLS_AES_ALT, mbed TLS will no longer |
| 378 | + * Example: In case you uncomment MBEDTLS_AES_ALT, Mbed TLS will no longer |
379 | 379 | * provide the "struct mbedtls_aes_context" definition and omit the base
|
380 | 380 | * function declarations and implementations. "aes_alt.h" will be included from
|
381 | 381 | * "aes.h" to include the new function definitions.
|
|
423 | 423 | /**
|
424 | 424 | * \def MBEDTLS_SHA256_PROCESS_ALT
|
425 | 425 | *
|
426 |
| - * MBEDTLS__FUNCTION_NAME__ALT: Uncomment a macro to let mbed TLS use you |
| 426 | + * MBEDTLS__FUNCTION_NAME__ALT: Uncomment a macro to let Mbed TLS use you |
427 | 427 | * alternate core implementation of symmetric crypto or hash function. Keep in
|
428 | 428 | * mind that function prototypes should remain the same.
|
429 | 429 | *
|
430 |
| - * This replaces only one function. The header file from mbed TLS is still |
| 430 | + * This replaces only one function. The header file from Mbed TLS is still |
431 | 431 | * used, in contrast to the MBEDTLS__MODULE_NAME__ALT flags.
|
432 | 432 | *
|
433 |
| - * Example: In case you uncomment MBEDTLS_SHA256_PROCESS_ALT, mbed TLS will |
| 433 | + * Example: In case you uncomment MBEDTLS_SHA256_PROCESS_ALT, Mbed TLS will |
434 | 434 | * no longer provide the mbedtls_sha1_process() function, but it will still provide
|
435 | 435 | * the other function (using your mbedtls_sha1_process() function) and the definition
|
436 | 436 | * of mbedtls_sha1_context, so your implementation of mbedtls_sha1_process must be compatible
|
|
480 | 480 | *
|
481 | 481 | * Expose a part of the internal interface of the Elliptic Curve Point module.
|
482 | 482 | *
|
483 |
| - * MBEDTLS_ECP__FUNCTION_NAME__ALT: Uncomment a macro to let mbed TLS use your |
| 483 | + * MBEDTLS_ECP__FUNCTION_NAME__ALT: Uncomment a macro to let Mbed TLS use your |
484 | 484 | * alternative core implementation of elliptic curve arithmetic. Keep in mind
|
485 | 485 | * that function prototypes should remain the same.
|
486 | 486 | *
|
487 |
| - * This partially replaces one function. The header file from mbed TLS is still |
| 487 | + * This partially replaces one function. The header file from Mbed TLS is still |
488 | 488 | * used, in contrast to the MBEDTLS_ECP_ALT flag. The original implementation
|
489 | 489 | * is still present and it is used for group structures not supported by the
|
490 | 490 | * alternative.
|
|
508 | 508 | * implement optimized set up and tear down instructions.
|
509 | 509 | *
|
510 | 510 | * Example: In case you set MBEDTLS_ECP_INTERNAL_ALT and
|
511 |
| - * MBEDTLS_ECP_DOUBLE_JAC_ALT, mbed TLS will still provide the ecp_double_jac() |
| 511 | + * MBEDTLS_ECP_DOUBLE_JAC_ALT, Mbed TLS will still provide the ecp_double_jac() |
512 | 512 | * function, but will use your mbedtls_internal_ecp_double_jac() if the group
|
513 | 513 | * for the operation is supported by your implementation (i.e. your
|
514 | 514 | * mbedtls_internal_ecp_grp_capable() function returns 1 for this group). If the
|
515 |
| - * group is not supported by your implementation, then the original mbed TLS |
| 515 | + * group is not supported by your implementation, then the original Mbed TLS |
516 | 516 | * implementation of ecp_double_jac() is used instead, unless this fallback
|
517 | 517 | * behaviour is disabled by setting MBEDTLS_ECP_NO_FALLBACK (in which case
|
518 | 518 | * ecp_double_jac() will return MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE).
|
|
543 | 543 | /**
|
544 | 544 | * \def MBEDTLS_ENTROPY_HARDWARE_ALT
|
545 | 545 | *
|
546 |
| - * Uncomment this macro to let mbed TLS use your own implementation of a |
| 546 | + * Uncomment this macro to let Mbed TLS use your own implementation of a |
547 | 547 | * hardware entropy collector.
|
548 | 548 | *
|
549 | 549 | * Your function must be called \c mbedtls_hardware_poll(), have the same
|
|
1491 | 1491 | * \def MBEDTLS_SSL_ALL_ALERT_MESSAGES
|
1492 | 1492 | *
|
1493 | 1493 | * Enable sending of alert messages in case of encountered errors as per RFC.
|
1494 |
| - * If you choose not to send the alert messages, mbed TLS can still communicate |
| 1494 | + * If you choose not to send the alert messages, Mbed TLS can still communicate |
1495 | 1495 | * with other servers, only debugging of failures is harder.
|
1496 | 1496 | *
|
1497 | 1497 | * The advantage of not sending alert messages, is that no information is given
|
|
2181 | 2181 | * Comment this macro to disallow using RSASSA-PSS in certificates.
|
2182 | 2182 | */
|
2183 | 2183 | #define MBEDTLS_X509_RSASSA_PSS_SUPPORT
|
2184 |
| -/** \} name SECTION: mbed TLS feature support */ |
| 2184 | +/** \} name SECTION: Mbed TLS feature support */ |
2185 | 2185 |
|
2186 | 2186 | /**
|
2187 |
| - * \name SECTION: mbed TLS modules |
| 2187 | + * \name SECTION: Mbed TLS modules |
2188 | 2188 | *
|
2189 |
| - * This section enables or disables entire modules in mbed TLS |
| 2189 | + * This section enables or disables entire modules in Mbed TLS |
2190 | 2190 | * \{
|
2191 | 2191 | */
|
2192 | 2192 |
|
|
2882 | 2882 | * Module: library/memory_buffer_alloc.c
|
2883 | 2883 | *
|
2884 | 2884 | * Requires: MBEDTLS_PLATFORM_C
|
2885 |
| - * MBEDTLS_PLATFORM_MEMORY (to use it within mbed TLS) |
| 2885 | + * MBEDTLS_PLATFORM_MEMORY (to use it within Mbed TLS) |
2886 | 2886 | *
|
2887 | 2887 | * Enable this module to enable the buffer memory allocator.
|
2888 | 2888 | */
|
|
3484 | 3484 | * \def MBEDTLS_THREADING_C
|
3485 | 3485 | *
|
3486 | 3486 | * Enable the threading abstraction layer.
|
3487 |
| - * By default mbed TLS assumes it is used in a non-threaded environment or that |
| 3487 | + * By default Mbed TLS assumes it is used in a non-threaded environment or that |
3488 | 3488 | * contexts are not shared between threads. If you do intend to use contexts
|
3489 | 3489 | * between threads, you will need to enable this layer to prevent race
|
3490 | 3490 | * conditions. See also our Knowledge Base article about threading:
|
|
3498 | 3498 | * You will have to enable either MBEDTLS_THREADING_ALT or
|
3499 | 3499 | * MBEDTLS_THREADING_PTHREAD.
|
3500 | 3500 | *
|
3501 |
| - * Enable this layer to allow use of mutexes within mbed TLS |
| 3501 | + * Enable this layer to allow use of mutexes within Mbed TLS |
3502 | 3502 | */
|
3503 | 3503 | //#define MBEDTLS_THREADING_C
|
3504 | 3504 |
|
|
3644 | 3644 | */
|
3645 | 3645 | #define MBEDTLS_X509_CSR_WRITE_C
|
3646 | 3646 |
|
3647 |
| -/** \} name SECTION: mbed TLS modules */ |
| 3647 | +/** \} name SECTION: Mbed TLS modules */ |
3648 | 3648 |
|
3649 | 3649 | /**
|
3650 | 3650 | * \name SECTION: General configuration options
|
|
0 commit comments