Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 28) sorted by relevance

12

/mbedtls-latest/tests/scripts/
Ddepends.py120 def option_exists(conf, option): argument
121 return option in conf.settings
123 def set_config_option_value(conf, option, colors, value: Union[bool, str]): argument
127 if not option_exists(conf, option):
128 log_line('Symbol {} was not found in {}'.format(option, conf.filename), color=colors.red)
132 log_command(['config.py', 'unset', option])
133 conf.unset(option)
135 log_command(['config.py', 'set', option])
136 conf.set(option)
138 log_command(['config.py', 'set', option, value])
[all …]
Dlist-identifiers.sh48 iteration of list-identifiers.sh, of which only the --internal option remains in
/mbedtls-latest/docs/
Duse-psa-crypto.md1 This document describes the compile-time configuration option
4 This option:
14 **Application code:** when this option is enabled, you need to call
19 **Why enable this option:** to fully take advantage of PSA drivers in PK,
20 X.509 and TLS. For example, enabling this option is what allows use of drivers
22 this option disabled, some code in PK, X.509, TLS or the crypto library might
26 **Relationship with other options:** This option depends on
44 depending on this option being set or not are:
52 **Historical note:** This option was introduced at a time when PSA Crypto was
143 the documentation of that option).
[all …]
D3.0-migration-guide.md90 ### Remove `MBEDTLS_CHECK_PARAMS` option
93 affects users who enabled that option.
95 The option `MBEDTLS_CHECK_PARAMS` (disabled by default) enabled certain kinds
116 basis, but their presence will no longer be dependent on a compile-time option.
123 ### Remove the `MBEDTLS_TEST_NULL_ENTROPY` configuration option
125 This does not affect users who use the default `mbedtls_config.h`, as this option was
128 If you were using the `MBEDTLS_TEST_NULL_ENTROPY` option and your platform
201 The option `MBEDTLS_ECP_FIXED_POINT_OPTIM` now increases code size and it does
207 of this option for details.
216 you will need to add `#define MBEDTLS_SHA224_C` option to your config.
[all …]
Dpsa-driver-example-and-guide.md127option when your project uses Mbed TLS mostly out-of-the-box without significantly modifying the …
137 * *Providing a user config file.* This is the preferred option when your project requires a custom …
/mbedtls-latest/library/
DCMakeLists.txt1 option(USE_STATIC_MBEDTLS_LIBRARY "Build Mbed TLS static library." ON)
2 option(USE_SHARED_MBEDTLS_LIBRARY "Build Mbed TLS shared library." OFF)
3 option(LINK_WITH_PTHREAD "Explicitly link Mbed TLS library to pthread." OFF)
4 option(LINK_WITH_TRUSTED_STORAGE "Explicitly link Mbed TLS library to trusted_storage." OFF)
208 option(MSVC_STATIC_RUNTIME "Build the libraries with /MT compiler flag" OFF)
/mbedtls-latest/
DCMakeLists.txt65 option(ENABLE_PROGRAMS "Build Mbed TLS programs." ON)
67 option(UNSAFE_BUILD "Allow unsafe builds. These builds ARE NOT SECURE." OFF)
68 option(MBEDTLS_FATAL_WARNINGS "Compiler warnings treated as errors" ON)
73 option(GEN_FILES "Generate the auto-generated files as needed" OFF) # off in development
75 option(GEN_FILES "Generate the auto-generated files as needed" OFF)
78 option(DISABLE_PACKAGE_CONFIG_AND_INSTALL "Disable package configuration, target export and install…
93 option(ENABLE_TESTING "Build Mbed TLS tests." OFF)
95 option(ENABLE_TESTING "Build Mbed TLS tests." ON)
DChangeLog84 * When the new compilation option MBEDTLS_PSA_KEY_STORE_DYNAMIC is enabled,
86 of increased code size. This option is off by default, but enabled in
114 disabled (MBEDTLS_SSL_SESSION_TICKETS configuration option). Fixes #6395.
242 * Enable the new option MBEDTLS_BLOCK_CIPHER_NO_DECRYPT to omit
245 (the cipher and PSA interfaces). This option is incompatible with modes
328 time by the MBEDTLS_SSL_EARLY_DATA configuration option and at runtime by
351 Note that setting this option will cause input-output buffer overlap to
574 A new configuration option, MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH, can be
617 * New configuration option MBEDTLS_AES_USE_HARDWARE_ONLY introduced. When
618 using CPU-accelerated AES (e.g., Arm Crypto Extensions), this option
[all …]
DBRANCHES.md67 but always attempt to provide a compatibility option.
95 will put security first but provide a compatibility option. (So far we never
DSECURITY.md146 configuration option is defined. This option is off by default.
DREADME.md72 …nvoke `python` instead of `python3`. To install the packages system-wide, omit the `--user` option.
111 … content (for example because your compiler doesn't accept `-Wall` as an option). Directory-specif…
298 …ation option `MBEDTLS_USE_PSA_CRYPTO` in `mbedtls_config.h`. Note that TLS 1.3 uses PSA cryptograp…
DLICENSE302 you may at your option offer warranty protection in exchange for a fee.
458 later version", you have the option of following the terms and conditions
513 (at your option) any later version.
/mbedtls-latest/tests/suites/
Dtest_suite_mps.function353 void mbedtls_mps_reader_pausing(int option)
369 * `option` parameter and documented below.
395 switch (option) {
412 switch (option) {
480 void mbedtls_mps_reader_pausing_multiple_feeds(int option)
523 switch (option) {
558 switch (option) {
587 void mbedtls_mps_reader_reclaim_data_left(int option)
605 switch (option) {
685 void mbedtls_mps_reader_multiple_pausing(int option)
[all …]
Dhost_test.function563 /* Not an option, therefore treat all further arguments as the file
/mbedtls-latest/docs/architecture/psa-migration/
Dpsa-limitations.md57 option, so the current PSA Crypto API is a good match for that. (Not
78 client-side the only option is to offer named groups and break the handshake
80 perhaps the least unsatisfying option in terms of result; it's also probably
85 As of early 2023, the plan is to go with option 2 in Mbed TLS 4.0, which has
332 Since Mbed TLS 3.4, option 1 is implemented.
Dtesting.md21 However, when it comes to TLS, we also have the option of using debug messages
52 - in `programs/ssl/ssl_client2` a new option `key_opaque` that causes the
Dmd-cipher-dispatch.md88option `MBEDTLS_USE_PSA_CRYPTO` causes parts of the library to call the PSA API instead of legacy …
92 …(benefiting from PSA accelerators when they're usable) regardless of whether the option is enabled.
93 …/github.com/Mbed-TLS/mbedtls/issues/6497)). This effectively extends the option to modules that ar…
332 This will go away naturally in 4.0 when this macros is not longer an option (because it's always on…
Dstrategy.md45 documentation of this option in `mbedtls_config.h`);
50 from even enabling the option by default.)
74 Currently this option controls not only the presence of restartable APIs in
/mbedtls-latest/include/
DCMakeLists.txt1 option(INSTALL_MBEDTLS_HEADERS "Install Mbed TLS headers." ON)
/mbedtls-latest/doxygen/
Dmbedtls.doxyfile38 # Clang >=15, the -Wdocumentation option emits a warning for empty
/mbedtls-latest/programs/fuzz/
DREADME.md51 * Run them one against the other with `reproducible` option turned on while capturing traffic into …
/mbedtls-latest/docs/architecture/
Dalternative-implementations.md30 …to change, and not all operations support drivers yet. The configuration option `MBEDTLS_USE_PSA_C…
72 … or `_ret`, this is removed in the `_ALT` symbol. When the corresponding option is enabled, the bu…
Dtls13-support.md8 may be enabled using the MBEDTLS_SSL_PROTO_TLS1_3 configuration option.
98 | Mbed TLS configuration option | Support |
Dpsa-shared-memory.md138option which has to be set by the application using Mbed TLS. This is both an additional maintenan…
395 …turn out to be prohibitively difficult, code review exists as a fallback option. However, it shoul…
618 To this end, the macros above are defined conditionally on a new config option, `MBEDTLS_PSA_ASSUME…
672 …an auto-detect ASan at compile-time and set an option: `MBEDTLS_TEST_MEMORY_CAN_POISON`. When this…
/mbedtls-latest/docs/architecture/testing/
Dinvasive-testing.md209 …he product for testing, but not in production, we can add a compile-time option to enable it. This…
225 * **Merely enabling the compile-time option should not change the behavior.**<br>
358 Solution ([compile-time option](#compile-time-options)): replace entropy initialization functions b…

12