Home
last modified time | relevance | path

Searched refs:needed (Results 1 – 19 of 19) sorted by relevance

/mbedtls-3.5.0/tests/suites/
Dtest_suite_ctr_drbg.function146 goto exit; // goto is needed to avoid warning ( no test assertions in func)
160 goto exit; // goto is needed to avoid warning ( no test assertions in func)
173 goto exit; // goto is needed to avoid warning ( no test assertions in func)
186 goto exit; // goto is needed to avoid warning ( no test assertions in func)
Dtest_suite_mps.data25 MPS Reader: Pausing needed but disabled
28 MPS Reader: Pausing needed + enabled, but buffer too small
Dtest_suite_md.function131 /* Note: PSA Crypto init not needed for info functions */
Dtest_suite_psa_crypto.function298 /* An overapproximation of the amount of storage needed for a key of the
/mbedtls-3.5.0/scripts/
Dbasic.requirements.txt3 # Required to (re-)generate source files. Not needed if the generated source
/mbedtls-3.5.0/tests/docker/bionic/
DDockerfile104 # Build libnettle 2.7.1 (needed by legacy gnutls)
125 # Build libnettle 3.1 (needed by gnutls)
148 # Build libnettle 3.7.3 (needed by gnutls next)
/mbedtls-3.5.0/
DCONTRIBUTING.md12 - [Changelog](#documentation): if needed, please provide a changelog entry.
13 - [Backports](#long-term-support-branches): provide a backport if needed (it's fine to wait until t…
66 Sample applications, if needed, should be modified as well.
76 Mbed TLS is well documented, but if you think documentation is needed, speak out!
80 1. If needed, a Readme file is advised.
DCMakeLists.txt60 option(GEN_FILES "Generate the auto-generated files as needed" OFF)
62 option(GEN_FILES "Generate the auto-generated files as needed" OFF)
90 # Python 3 is only needed here to check for configuration warnings.
340 # Make scripts needed for testing available in an out-of-source build.
343 # Copy (don't link) DartConfiguration.tcl, needed for memcheck, to
DBRANCHES.md87 minimum version of tools needed to build the code. The only exception, as
DREADME.md226 The solution file `mbedTLS.sln` contains all the basic projects needed to build the library and all…
DChangeLog1056 If needed, SHA-1 certificates can still be verified by using a custom
1444 the PSA code needed by a PSA crypto client when the PSA crypto
2123 stdarg.h where needed. Fixes #2656.
2173 stdarg.h where needed. Fixes #2656.
3091 contexts from keys consisting of N,D,E only, even if P,Q are needed for the
3301 option if needed.
4049 "minimize" others (eg use stddef.h if only size_t is needed).
5107 enable and disable individual modes when needed
/mbedtls-3.5.0/docs/proposed/
Dpsa-conditional-inclusion-c.md32 … TLS build must not include the corresponding software code (unless a software fallback is needed).
114 * **`MBEDTLS_PSA_BUILTIN_xxx`** indicates whether the software implementation is needed.
134 The `PSA_WANT_xxx` definitions in `mbedtls/config_psa.h` are needed not only to build the PSA parts…
158 …t part of the public interface of the library. However these symbols are needed to deduce whether …
228 …tion of RSA or ECDSA, `psa_sign_hash` and `psa_verify_hash` may still be needed if there is an opa…
Dpsa-driver-wrappers-codegen-migration-guide.md33 …r_wrappers.c file, the user will need to patch into the template file as needed (psa_crypto_driver…
Dpsa-driver-interface.md594 …d round of calls with the `BLOCK` flag set and the `KEEPALIVE` flag clear to gather needed entropy.
1087 Can the driver assembly process generate distinct location values as needed? This can be convenient…
/mbedtls-3.5.0/docs/architecture/psa-migration/
Dstrategy.md84 part of) it ourselves under the hood as needed, but that would likely require
238 We can roughly divide the work needed to get there in the following steps:
295 previous dependency OR PSA Crypto with needed algorithms". When building
458 slot only when needed (see current `ecdsa_verify_wrap` when
/mbedtls-3.5.0/tests/
DCMakeLists.txt289 # Make scripts and data files needed for testing available in an
/mbedtls-3.5.0/library/
Dssl_tls.c2496 size_t needed = 1 /* endpoint */ in ssl_tls13_session_save() local
2506 needed += session->resumption_key_len; /* resumption_key */ in ssl_tls13_session_save()
2509 needed += 8; /* start_time or ticket_received */ in ssl_tls13_session_save()
2515 needed += 2 /* hostname_len */ in ssl_tls13_session_save()
2519 needed += 4 /* ticket_lifetime */ in ssl_tls13_session_save()
2523 if (session->ticket_len > SIZE_MAX - needed) { in ssl_tls13_session_save()
2527 needed += session->ticket_len; /* ticket */ in ssl_tls13_session_save()
2531 *olen = needed; in ssl_tls13_session_save()
2532 if (needed > buf_len) { in ssl_tls13_session_save()
/mbedtls-3.5.0/docs/
D3.0-migration-guide.md18 Much of the information needed to determine a migration path can be found in the Mbed TLS 2.x docum…
242 …()` now takes an extra output buffer for the last partial block. This is needed for alternative im…
252 * `mbedtls_gcm_finish()` now takes an extra output buffer for the last partial block if needed.
360 was only needed when using a private key). This affects all applications using
/mbedtls-3.5.0/docs/architecture/testing/
Dinvasive-testing.md14 * [“Requirements”](#requirements) explores the reasons why invasive testing is needed and how it sh…
20 …e crypto/keystore and X.509 parts of the library are about. More work is needed to fully take TLS …