Home
last modified time | relevance | path

Searched refs:symbols (Results 1 – 9 of 9) sorted by relevance

/mbedtls-latest/docs/proposed/
Dpsa-conditional-inclusion-c.md18 …n file (`mbedtls_config.h`). This mechanism is based on two main sets of symbols: `MBEDTLS_xxx_C` …
24symbols are somewhat inconsistent, and in particular do not work well for asymmetric cryptography.…
52symbols of the form `PSA_WANT_xxx` where `xxx` describes the feature that the symbol enables. The
56 …ncludes support for specific mechanisms conditionally based on the existing `MBEDTLS_xxx_` symbols.
59 ### PSA Crypto configuration symbols
71 …ion determines whether a feature is available through the PSA API. These symbols should be used in…
81 #### Configuration symbols for key types argument
96 #### Configuration symbols for elliptic curves argument
102 #### Configuration symbols for Diffie-Hellman groups argument
104 There are no configuration symbols for Diffie-Hellman groups (`PSA_DH_GROUP_xxx`).
[all …]
/mbedtls-latest/tests/scripts/
Ddepends.py312 def __init__(self, symbols, commands, exclude): argument
320 def __init__(self, symbols, commands, exclude=None): argument
327 super().__init__(symbols, commands, exclude)
329 for symbol in symbols:
331 for symbol in symbols:
348 def __init__(self, symbols, commands, exclude=None): argument
352 super().__init__(symbols, commands, exclude)
353 for symbol in symbols:
Dcheck_names.py276 symbols = self.parse_symbols()
295 self.log.debug(" {:4} Exported Symbols".format(len(symbols)))
303 "symbols": symbols,
673 symbols = []
707 symbols = self.parse_symbols_from_nm([
729 return symbols
746 symbols = []
763 symbols.append(symbol.group("symbol"))
767 return symbols
/mbedtls-latest/docs/architecture/
Dpsa-crypto-implementation-structure.md81 …test/drivers/crypto_config_test_driver_extension.h` — [Preprocessor symbols](#preprocessor-symbols)
82 * Occasionally `library/check_crypto_config.h` — [Preprocessor symbols](#preprocessor-symbols)
83 * [ ] `include/mbedtls/config_psa.h` — [Preprocessor symbols](#preprocessor-symbols)
123 ### Preprocessor symbols
127 … to applications when the preprocessor symbol `PSA_WANT_ttt_xxx` is defined. These symbols are set:
129 …ith code in `include/mbedtls/config_psa.h` deducing the necessary underlying `MBEDTLS_xxx` symbols.
131 …est/drivers/crypto_config_test_driver_extension.h` sets additional `MBEDTLS_PSA_ACCEL_xxx` symbols.
/mbedtls-latest/scripts/
Dcommon.make39 ## Remove the preprocessor symbols that are set in the current configuration
73 # If the call to remove_enabled_options returns "control", the symbols
/mbedtls-latest/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md64 …AES-CBC, etc. In code that uses the PSA interfaces, this needs to change to `PSA_WANT_xxx` symbols.
228 * The available cryptographic implementations, based on preprocessor symbols (`MBEDTLS_xxx_C`, `PSA…
269 …celerator but no software implementation, we don't want the preprocessor symbols to indicate that …
288 …y supported (users are not supposed to manually define PSA configuration symbols when `MBEDTLS_PSA…
/mbedtls-latest/docs/
Ddriver-only-builds.md396 (i.e. `PSA_WANT_xxx`) symbols is not always 1:1. For example:
406 whereas in PSA there are 2 different symbols: `PSA_WANT_ALG_CCM_STAR_NO_TAG`
Dpsa-transition.md180 …(similar to `MBEDTLS_CONFIG_FILE` and `MBEDTLS_USER_CONFIG_FILE` for legacy configuration symbols).
200 Note that all `PSA_WANT_xxx` symbols must be set to a non-zero value. In particular, setting `PSA_W…
221 …he PSA API need to explicitly enable both the `PSA_WANT_xxx` symbols and the `MBEDTLS_xxx` symbols.
647 …y sources configured through the legacy interface (`MBEDTLS_ENTROPY_xxx` symbols). Its set of sour…
/mbedtls-latest/
DChangeLog583 * New symbols PSA_WANT_KEY_TYPE_xxx_KEY_PAIR_yyy and
741 * Fix undefined symbols in some builds using TLS 1.3 with a custom
1356 pattern for PSA_WANT_xxx symbols. Previously you had to specify
3483 * Fix "no symbols" warning issued by ranlib when building on Mac OS X. Fix