Home
last modified time | relevance | path

Searched full:build (Results 1 – 25 of 188) sorted by relevance

12345678

/mbedtls-3.6.0/visualc/VS2013/
DmbedTLS.sln297 {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|Win32.Build.0 = Debug|Win32
299 {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|x64.Build.0 = Debug|x64
301 {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|Win32.Build.0 = Release|Win32
303 {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|x64.Build.0 = Release|x64
305 {5DBB9FC3-6FD6-CA8D-E0FA-35F1E75EFAE7}.Debug|Win32.Build.0 = Debug|Win32
307 {5DBB9FC3-6FD6-CA8D-E0FA-35F1E75EFAE7}.Debug|x64.Build.0 = Debug|x64
309 {5DBB9FC3-6FD6-CA8D-E0FA-35F1E75EFAE7}.Release|Win32.Build.0 = Release|Win32
311 {5DBB9FC3-6FD6-CA8D-E0FA-35F1E75EFAE7}.Release|x64.Build.0 = Release|x64
313 {1E959679-AB4C-F434-E078-BAA4DC2159E9}.Debug|Win32.Build.0 = Debug|Win32
315 {1E959679-AB4C-F434-E078-BAA4DC2159E9}.Debug|x64.Build.0 = Debug|x64
[all …]
/mbedtls-3.6.0/tests/scripts/
Dall.sh22 # Warning: the test is destructive. It includes various build modes and
72 # * component_build_XXX: build things but don't run them.
73 # * component_test_XXX: build and test.
157 # See also RELEASE_SEED in basic-build-test.sh. Debugging is easier if
160 # basic-build-test.sh as well.
262 --restore First clean up the build tree, restoring backed up
275 --out-of-source-dir=<path> Directory used for CMake out-of-source build tests.
319 rm -rf programs/test/cmake_subproject/build
324 rm -rf programs/test/cmake_package/build
329 rm -rf programs/test/cmake_package_install/build
[all …]
Ddocker_env.sh60 # Build the Docker image
62 ${DOCKER} image build \
65 --build-arg MAKEFLAGS_PARALLEL="-j ${NUM_PROC}" \
67 ${http_proxy+--build-arg http_proxy=${http_proxy}} \
68 ${https_proxy+--build-arg https_proxy=${https_proxy}} \
69 ${MBEDTLS_DOCKER_REGISTRY+--build-arg MY_REGISTRY="${MBEDTLS_DOCKER_REGISTRY}/"} \
Dtest_psa_compliance.py37 # that allow it to build with MbedTLS 3, and fixes a couple of issues in the compliance test suite.
71 subprocess.check_call(['cmake', '--build', library_build_dir,
84 build_dir = 'api-tests/build'
106 subprocess.check_call(['cmake', '--build', '.'])
168 parser.add_argument('--build-dir', nargs=1,
169 help='path to Mbed TLS / PSA Crypto build directory')
Dpsa_collect_statuses.py4 1. Build Mbed TLS with -DRECORD_PSA_STATUS_COVERAGE_LOG
11 The build command is "make -DRECORD_PSA_STATUS_COVERAGE_LOG", which is
12 only supported with make (as opposed to CMake or other build methods).
71 """Build and run unit tests and report observed function return statuses.
73 Build Mbed TLS with -DRECORD_PSA_STATUS_COVERAGE_LOG, run the
Dbasic-build-test.sh3 # basic-build-test.sh
27 # Usage: basic-build-test.sh
67 # Step 0 - print build environment info
77 # Step 1 - Make and instrumented build for code coverage
150 rm -f "tests/basic-build-test-$$.ok"
246 touch "basic-build-test-$$.ok"
258 rm "tests/basic-build-test-$$.ok"
Ddepends.py19 - commands to be run on each job (only build, build and test, or any other custom);
24 - ComplementaryDomain - build a job for each passed symbol by disabling a single
27 - ExclusiveDomain - build a job where, for each passed symbol, only this particular
157 """Build a job object.
192 '''Run the job's build and test commands.
196 other commands are run (typically, the first command is a build command
197 and subsequent commands are tests that cannot run if the build failed).'''
318 """Build a domain for the specified list of configuration symbols.
346 """Build a domain for the specified list of configuration symbols.
/mbedtls-3.6.0/tests/docker/bionic/
DDockerfile5 # Defines a Docker container suitable to build and run all tests (all.sh),
30 # mbedtls build/test dependencies
31 build-essential \
49 # libnettle build dependencies
59 # Build a static, legacy openssl from sources with sslv3 enabled
60 # Based on https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 (build-openssl.sh)
61 # Note: openssl-1.0.2 and earlier has known build issues with parallel make.
71 # Build OPENSSL as 1.0.2g
81 # Build a new openssl binary for ARIA/CHACHA20 support
82 # Based on https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 (build-openssl.sh)
[all …]
/mbedtls-3.6.0/
DREADME.md11 Mbed TLS should build out of the box on most systems. Some platform specific options are available …
13 …ronment variables such as `CC` and `CFLAGS` when using the Make and CMake build system (see below).
35 There are currently three active build systems used within Mbed TLS releases:
41 …date. The others should reflect all changes present in the CMake and Make build system, although f…
43 The Make and CMake build systems create three libraries: libmbedcrypto, libmbedx509, and libmbedtls…
47 You need the following tools to build the library with the provided makefiles:
49 * GNU Make 3.82 or a build tool that CMake supports.
51 * Python 3.8 to generate the test code. Python is also needed to integrate PSA drivers and to build
63 * Perl, for some library source files and for Visual Studio build files.
83 …uire GNU Make. To build the library and the sample programs, GNU Make and a C compiler are suffici…
[all …]
D.gitignore6 # CMake build artifacts:
19 # Test coverage build artifacts:
33 # Unix-like build artifacts:
36 # MSVC build artifacts:
42 # Python build artifacts:
48 # Microsoft CMake extension for Visual Studio Code generates a build directory by default
49 /build/
D.readthedocs.yaml9 build:
24 # Build documentation in the docs/ directory with Sphinx
29 # Optionally declare the Python requirements required to build your docs
DCMakeLists.txt2 # CMake build system design considerations:
55 option(ENABLE_PROGRAMS "Build Mbed TLS programs." ON)
77 option(ENABLE_TESTING "Build Mbed TLS tests." OFF)
79 option(ENABLE_TESTING "Build Mbed TLS tests." ON)
120 …CACHE STRING "Choose the type of build: None Debug Release Coverage ASan ASanDbg MemSan MemSanDbg …
342 # 1. Build with:
346 # tests/scripts/basic-build-test.sh
361 # Make scripts needed for testing available in an out-of-source build.
/mbedtls-3.6.0/docs/proposed/
Dpsa-driver-integration-guide.md7 This document describes how to build Mbed TLS with additional cryptoprocessor drivers that follow t…
13 The PSA cryptography driver interface provides a way to build Mbed TLS with additional code that im…
17 …driver description files** in JSON format and some code to include in the build. The driver code c…
19 ## How to build Mbed TLS with drivers
21 To build Mbed TLS with drivers:
Dpsa-conditional-inclusion-c.md4 This document is a proposed interface for deciding at build time which cryptographic mechanisms to …
18 Mbed TLS offers a way to select which cryptographic mechanisms are included in a build through its …
30 … application does not require a mechanism, a suitably configured Mbed TLS build must not include i…
32 [Req.drivers] If a PSA driver is available in the build, a suitably configured Mbed TLS build must …
34 [Req.c] The configuration mechanism consists of C preprocessor definitions, and the build does not …
79 …ion in the PSA Crypto configuration file, it may still be included in the build, either because th…
143 … in `mbedtls/config_psa.h` are needed not only to build the PSA parts of the library, but also to
195 …chanism for a PSA service is in JSON syntax. The translation from JSON to build instructions is no…
/mbedtls-3.6.0/scripts/
Dlcov.sh9 1. Build the library with CFLAGS="--coverage -O0 -g3" and link the test
11 This can be an out-of-tree build.
15 mkdir build-coverage && cd build-coverage &&
33 # Collect stats and build a HTML report.
Dwindows_msbuild.bat1 @rem Build and test Mbed TLS with Visual Studio using msbuild.
4 @rem https://docs.microsoft.com/en-us/cpp/build/how-to-modify-the-target-framework-and-…
9 set "vcvarsall=C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vc…
/mbedtls-3.6.0/scripts/data_files/
Dvs2013-sln-template.sln18 {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|Win32.Build.0 = Debug|Win32
20 {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|x64.Build.0 = Debug|x64
22 {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|Win32.Build.0 = Release|Win32
24 {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|x64.Build.0 = Release|x64
/mbedtls-3.6.0/docs/
Ddriver-only-builds.md33 - Define the corresponding `MBEDTLS_PSA_ACCEL` in your build. This could be
38 included in the build.
83 In such a build, all crypto operations (via the PSA Crypto API, or non-PSA
93 available in the present build of Mbed TLS, regardless of whether it's
132 still be included in the build, see limitations sub-section below.
150 the present build of Mbed TLS, regardless of whether ECC is provided by a
175 automatically be included in the build in order to support it. Therefore
200 In order for a build to be driver-only (no built-in implementation), all the
205 want to have more enabled in you build?
/mbedtls-3.6.0/docs/architecture/psa-migration/
Dtesting.md11 There needs to be at least one build in `all.sh` that enables
14 `MBEDTLS_USE_PSA_CRYPTO`. There needs to be at least one build with
80 covered by running the existing TLS tests in a build with
94 be already be covered by running the existing tests in a build with
/mbedtls-3.6.0/programs/fuzz/
DREADME.md30 mkdir build
31 cd build
50 * Build mbedtls programs ssl_server2 and ssl_client2
/mbedtls-3.6.0/library/
Dalignment.h234 * byte of the four bytes to build the 32 bits unsigned
270 * byte of the four bytes to build the 32 bits unsigned
307 * byte of the two bytes to build the 16 bits unsigned
343 * byte of the two bytes to build the 16 bits unsigned
379 * byte of the three bytes to build the 24 bits unsigned
411 * byte of the three bytes to build the 24 bits unsigned
443 * byte of the eight bytes to build the 64 bits unsigned
479 * byte of the eight bytes to build the 64 bits unsigned
/mbedtls-3.6.0/programs/test/cmake_package/
Dcmake_package.c14 /* The main reason to build this is for testing the CMake build, so the program
DCMakeLists.txt5 # skip installing it, and use the build directory directly instead.
22 --build "${MbedTLS_BINARY_DIR}")
/mbedtls-3.6.0/programs/test/cmake_package_install/
Dcmake_package_install.c15 /* The main reason to build this is for testing the CMake build, so the program
/mbedtls-3.6.0/programs/test/cmake_subproject/
Dcmake_subproject.c15 /* The main reason to build this is for testing the CMake build, so the program

12345678