Searched refs:source (Results 1 – 25 of 43) sorted by relevance
12
/mbedtls-latest/library/ |
D | entropy.c | 30 memset(ctx->source, 0, sizeof(ctx->source)); in mbedtls_entropy_init() 82 mbedtls_platform_zeroize(ctx->source, sizeof(ctx->source)); in mbedtls_entropy_free() 104 ctx->source[idx].f_source = f_source; in mbedtls_entropy_add_source() 105 ctx->source[idx].p_source = p_source; in mbedtls_entropy_add_source() 106 ctx->source[idx].threshold = threshold; in mbedtls_entropy_add_source() 107 ctx->source[idx].strong = strong; in mbedtls_entropy_add_source() 214 if (ctx->source[i].strong == MBEDTLS_ENTROPY_SOURCE_STRONG) { in entropy_gather_internal() 219 if ((ret = ctx->source[i].f_source(ctx->source[i].p_source, in entropy_gather_internal() 232 ctx->source[i].size += olen; in entropy_gather_internal() 315 if (ctx->source[i].size < ctx->source[i].threshold) { in mbedtls_entropy_func() [all …]
|
/mbedtls-latest/ |
D | dco.txt | 18 have the right to submit it under the open source license 22 of my knowledge, is covered under an appropriate open source 25 by me, under the same open source license (unless I am 37 this project or the open source license(s) involved.
|
D | LICENSE | 35 including but not limited to software source code, documentation 36 source, and configuration files. 64 communication on electronic mailing lists, source code control systems, 238 this service if you wish), that you receive source code or can get it 250 source code. And you must show them these terms so they know their 294 source code as you receive it, in any medium, provided that you 353 source code, which must be distributed under the terms of Sections 358 cost of physically performing source distribution, a complete 359 machine-readable copy of the corresponding source code, to be 364 to distribute corresponding source code. (This alternative is [all …]
|
D | README.md | 52 * Perl to run the tests, and to generate some source files in the development branch. 61 ### Generated source files in the development branch 63 The source code of Mbed TLS includes some files that are automatically generated by scripts and who… 67 * Perl, for some library source files and for Visual Studio build files. 68 * Python 3.8 and some Python packages, for some library source files, sample programs and test data… 91 In order to build from the source code using GNU Make, just enter at the command line: 119 In order to build the source using CMake in a separate directory (recommended), just enter at the c… 174 the Mbed TLS source directory, use: 232 …be generated first as described in [“Generated source files in the development branch”](#generated… 279 …analyses, hardware and firmware architecture specifications, and an open source firmware reference… [all …]
|
D | CMakeLists.txt | 150 # to the corresponding path in the source directory. 261 # Strictest warnings, UTF-8 source and execution charset 410 # cmake -D CMAKE_BUILD_TYPE=Coverage /path/to/source && make 428 # Make scripts needed for testing available in an out-of-source build.
|
D | SUPPORT.md | 8 - the `docs` directory in the source tree;
|
/mbedtls-latest/scripts/ |
D | basic.requirements.txt | 3 # Required to (re-)generate source files. Not needed if the generated source
|
D | generate_ssl_debug_helpers.py | 42 def preprocess_c_source_code(source, *classes): argument 85 for match in pattern.finditer(source): 99 yield from _yield_objects(source,
|
D | maintainer.requirements.txt | 5 # For source code analyses
|
D | make_generated_files.bat | 1 @rem Generate automatically-generated configuration-independent source files
|
/mbedtls-latest/tests/suites/ |
D | test_suite_psa_crypto_memory.data | 10 PSA input buffer copy: zero-length source buffer 25 PSA output buffer copy: zero-length source buffer
|
D | test_suite_psa_crypto_init.function | 33 /* PSA crypto uses the HMAC_DRBG module. It reads from the entropy source twice: 41 * to read from the entropy source twice: once for the initial entropy 88 memset(ctx->source, 0, sizeof(ctx->source));
|
D | test_suite_entropy.function | 20 * Dummy entropy source 339 /* Set strong source that reaches its threshold immediately and 340 * a weak source whose threshold is a test parameter. */ 374 * if result >= 0: result = expected number of calls to source 1
|
D | test_suite_psa_crypto_init.data | 31 # MBEDTLS_PSA_INJECT_ENTROPY means that a source of entropy (the seed file)
|
D | test_suite_entropy.data | 40 Entropy failing source
|
D | test_suite_psa_crypto_entropy.data | 8 # its own randomness source which is not affected by the forced failure of
|
D | helpers.function | 56 * to initialize some strong entropy source. */
|
/mbedtls-latest/tests/docker/bionic/ |
D | Dockerfile | 63 && wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1j.tar.gz -qO- | tar xz \ 73 && wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2g.tar.gz -qO- | tar xz \ 84 && wget https://www.openssl.org/source/openssl-1.1.1a.tar.gz -qO- | tar xz \
|
/mbedtls-latest/docs/proposed/ |
D | psa-driver-integration-guide.md | 17 …er code can either be provided in binary form as additional object file to link, or in source form. 37 <!-- TODO: what if the driver is provided as C source code? -->
|
/mbedtls-latest/docs/ |
D | psa-driver-example-and-guide.md | 44 … driver description. Implementations may allow drivers to be provided as source files and compiled… 46 …er.h). As Mbed TLS tests are built from source, there is no object file for the test driver. Howev… 126 This guide assumes you are building Mbed TLS from source alongside your project. If building with a… 135 CFLAGS="-DDRIVER_PREFIX_ENABLED" cmake path/to/source 141 …S as a PSA transparent driver. The source code of p256-m and the driver entry points is located in…
|
/mbedtls-latest/tests/ |
D | .gitignore | 20 ## Generated source files
|
/mbedtls-latest/include/ |
D | CMakeLists.txt | 18 # Make mbedtls_config.h available in an out-of-source build. ssl-opt.sh requires it.
|
/mbedtls-latest/include/mbedtls/ |
D | entropy.h | 112 mbedtls_entropy_source_state MBEDTLS_PRIVATE(source)[MBEDTLS_ENTROPY_MAX_SOURCES];
|
/mbedtls-latest/configs/ext/ |
D | README.md | 16 are taken verbatim from the TF-M source code here:
|
/mbedtls-latest/programs/ |
D | .gitignore | 77 ## Generated source files
|
12