|
119 | 119 | *
|
120 | 120 | * Enable the memory allocation layer.
|
121 | 121 | *
|
122 |
| - * By default PolarSSL uses the system-provided malloc() and free(). |
| 122 | + * By default mbed TLS uses the system-provided malloc() and free(). |
123 | 123 | * This allows different allocators (self-implemented or provided) to be
|
124 | 124 | * provided to the platform abstraction layer.
|
125 | 125 | *
|
|
153 | 153 | /**
|
154 | 154 | * \def POLARSSL_PLATFORM_XXX_ALT
|
155 | 155 | *
|
156 |
| - * Uncomment a macro to let PolarSSL support the function in the platform |
| 156 | + * Uncomment a macro to let mbed TLS support the function in the platform |
157 | 157 | * abstraction layer.
|
158 | 158 | *
|
159 |
| - * Example: In case you uncomment POLARSSL_PLATFORM_PRINTF_ALT, PolarSSL will |
| 159 | + * Example: In case you uncomment POLARSSL_PLATFORM_PRINTF_ALT, mbed TLS will |
160 | 160 | * provide a function "platform_set_printf()" that allows you to set an
|
161 | 161 | * alternative printf function pointer.
|
162 | 162 | *
|
|
170 | 170 | /* \} name SECTION: System support */
|
171 | 171 |
|
172 | 172 | /**
|
173 |
| - * \name SECTION: PolarSSL feature support |
| 173 | + * \name SECTION: mbed TLS feature support |
174 | 174 | *
|
175 | 175 | * This section sets support for features that are or are not needed
|
176 | 176 | * within the modules that are enabled.
|
|
193 | 193 | /**
|
194 | 194 | * \def POLARSSL_XXX_ALT
|
195 | 195 | *
|
196 |
| - * Uncomment a macro to let PolarSSL use your alternate core implementation of |
| 196 | + * Uncomment a macro to let mbed TLS use your alternate core implementation of |
197 | 197 | * a symmetric or hash algorithm (e.g. platform specific assembly optimized
|
198 | 198 | * implementations). Keep in mind that the function prototypes should remain
|
199 | 199 | * the same.
|
200 | 200 | *
|
201 |
| - * Example: In case you uncomment POLARSSL_AES_ALT, PolarSSL will no longer |
| 201 | + * Example: In case you uncomment POLARSSL_AES_ALT, mbed TLS will no longer |
202 | 202 | * provide the "struct aes_context" definition and omit the base function
|
203 | 203 | * declarations and implementations. "aes_alt.h" will be included from
|
204 | 204 | * "aes.h" to include the new function definitions.
|
|
797 | 797 | * \def POLARSSL_SSL_ALL_ALERT_MESSAGES
|
798 | 798 | *
|
799 | 799 | * Enable sending of alert messages in case of encountered errors as per RFC.
|
800 |
| - * If you choose not to send the alert messages, PolarSSL can still communicate |
| 800 | + * If you choose not to send the alert messages, mbed TLS can still communicate |
801 | 801 | * with other servers, only debugging of failures is harder.
|
802 | 802 | *
|
803 | 803 | * The advantage of not sending alert messages, is that no information is given
|
|
1158 | 1158 | * Uncomment to enable use of ZLIB
|
1159 | 1159 | */
|
1160 | 1160 | //#define POLARSSL_ZLIB_SUPPORT
|
1161 |
| -/* \} name SECTION: PolarSSL feature support */ |
| 1161 | +/* \} name SECTION: mbed TLS feature support */ |
1162 | 1162 |
|
1163 | 1163 | /**
|
1164 |
| - * \name SECTION: PolarSSL modules |
| 1164 | + * \name SECTION: mbed TLS modules |
1165 | 1165 | *
|
1166 |
| - * This section enables or disables entire modules in PolarSSL |
| 1166 | + * This section enables or disables entire modules in mbed TLS |
1167 | 1167 | * \{
|
1168 | 1168 | */
|
1169 | 1169 |
|
|
1695 | 1695 | * Module: library/memory_buffer_alloc.c
|
1696 | 1696 | *
|
1697 | 1697 | * Requires: POLARSSL_PLATFORM_C
|
1698 |
| - * POLARSSL_PLATFORM_MEMORY (to use it within PolarSSL) |
| 1698 | + * POLARSSL_PLATFORM_MEMORY (to use it within mbed TLS) |
1699 | 1699 | *
|
1700 | 1700 | * Enable this module to enable the buffer memory allocator.
|
1701 | 1701 | */
|
|
2038 | 2038 | * \def POLARSSL_THREADING_C
|
2039 | 2039 | *
|
2040 | 2040 | * Enable the threading abstraction layer.
|
2041 |
| - * By default PolarSSL assumes it is used in a non-threaded environment or that |
| 2041 | + * By default mbed TLS assumes it is used in a non-threaded environment or that |
2042 | 2042 | * contexts are not shared between threads. If you do intend to use contexts
|
2043 | 2043 | * between threads, you will need to enable this layer to prevent race
|
2044 | 2044 | * conditions.
|
|
2051 | 2051 | * You will have to enable either POLARSSL_THREADING_ALT or
|
2052 | 2052 | * POLARSSL_THREADING_PTHREAD.
|
2053 | 2053 | *
|
2054 |
| - * Enable this layer to allow use of mutexes within PolarSSL |
| 2054 | + * Enable this layer to allow use of mutexes within mbed TLS |
2055 | 2055 | */
|
2056 | 2056 | //#define POLARSSL_THREADING_C
|
2057 | 2057 |
|
|
2188 | 2188 | */
|
2189 | 2189 | #define POLARSSL_XTEA_C
|
2190 | 2190 |
|
2191 |
| -/* \} name SECTION: PolarSSL modules */ |
| 2191 | +/* \} name SECTION: mbed TLS modules */ |
2192 | 2192 |
|
2193 | 2193 | /**
|
2194 | 2194 | * \name SECTION: Module configuration options
|
|
0 commit comments