Home
last modified time | relevance | path

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

12

/mbedtls-3.4.0/
DMakefile7 .PHONY: all no_test programs lib tests install uninstall clean test check covtest lcov apidoc apido…
9 all: programs tests
12 no_test: programs
14 programs: lib mbedtls_test target
15 $(MAKE) -C programs
28 programs/%:
29 $(MAKE) -C programs $*
35 generated_files: programs/generated_files
70 for p in programs/*/* ; do \
85 for p in programs/*/* ; do \
[all …]
DREADME.md51 * Python 3.6 to generate the test code, and to generate sample programs in the development branch.
64 * Python 3 and some Python packages, for some library source files, sample programs and test data. …
82 We require GNU Make. To build the library and the sample programs, GNU Make and a C compiler are su…
100 programs/test/selftest
108 … might run into some issues. Please check the Makefiles in `library/`, `programs/` and `tests/` fo…
128 If you disabled the test suites, but kept the programs enabled, you can still run a much smaller se…
130 programs/test/selftest
225programs. The files in tests are not generated and compiled, as these need Python and perl environ…
229 Example programs
232 We've included example programs for a lot of different features and uses in [`programs/`](programs/…
[all …]
DCMakeLists.txt55 option(ENABLE_PROGRAMS "Build mbed TLS programs." ON)
272 # and programs. This shared test code is compiled and linked to test suites and
273 # programs objects as a set of compiled objects. The compiled objects are NOT
281 # target. This library of objects is used by tests and programs CMake files
294 add_subdirectory(programs)
311 COMMAND programs/test/selftest
D.gitignore1 # Random seed file created by test scripts and sample programs
D.pylintrc23 # They are whole programs, not meant to be included by another module.
DChangeLog325 * Add example programs cipher_aead_demo.c, md_hmac_demo.c, aead_demo.c
456 * Removed the prompt to exit from all windows build programs, which was causing
598 * Fix the build of sample programs when neither MBEDTLS_ERROR_C nor
1079 * Fix the setting of the read timeout in the DTLS sample programs.
1084 * Remove the AES sample application programs/aes/aescrypt2 which shows
1203 * Fix use-after-scope error in programs/ssl/ssl_client2.c and ssl_server2.c
1533 * The new utility programs/ssl/ssl_context_info prints a human-readable
1571 the example programs. Reported in #1430 and fix contributed by irwir.
1615 * Unify the example programs termination to call mbedtls_exit() instead of
1882 the example programs ssl_server2 and ssl_client2 to be run
[all …]
/mbedtls-3.4.0/scripts/
Dmemory.sh76 cd programs
86 cd programs
94 if valgrind --tool=massif --stacks=yes programs/ssl/$CLIENT >/dev/null 2>&1
120 (cd programs && make ssl/ssl_server2) >/dev/null
121 cp programs/ssl/ssl_server2 .
Dtmp_ignore_makefiles.sh55 git update-index --assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile
58 git update-index --no-assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile
Decc-heap.sh92 programs/test/benchmark ecdh ecdsa
/mbedtls-3.4.0/tests/scripts/
Dall.sh301 rm -f include/Makefile include/mbedtls/Makefile programs/!(fuzz)/Makefile
304 rm -rf programs/test/cmake_subproject/build
305 rm -f programs/test/cmake_subproject/Makefile
306 rm -f programs/test/cmake_subproject/cmake_subproject
309 rm -rf programs/test/cmake_package/build
310 rm -f programs/test/cmake_package/Makefile
311 rm -f programs/test/cmake_package/cmake_package
314 rm -rf programs/test/cmake_package_install/build
315 rm -f programs/test/cmake_package_install/Makefile
316 rm -f programs/test/cmake_package_install/cmake_package_install
[all …]
Dtest_zeroize.gdb22 # so, the script loads the test program at programs/test/zeroize.c and sets a
48 file ./programs/test/zeroize
53 set args ./programs/test/zeroize.c
Dbasic-in-docker.sh39 run_in_docker programs/test/selftest
Dcheck-generated-files.sh128 check scripts/generate_psa_constants.py programs/psa/psa_constant_names_generated.c
/mbedtls-3.4.0/programs/
DREADME.md1 Mbed TLS sample programs
4 …ry mostly contains sample programs that illustrate specific features of the library, as well as a …
20 …y algorithms (RSA or ECC) and writes it to a file that can be used by the other pk sample programs.
36 …: generates an RSA key and writes it to a file that can be used with the other RSA sample programs.
44 …_server.c): secure channel demonstrators (client, server). This pair of programs illustrates how t…
83 Note: unlike most of the other programs under the `programs/` directory, these two programs are not…
/mbedtls-3.4.0/tests/
DDescriptions.txt2 The various 'test_suite_XXX' programs from the 'tests' directory, executed
8 The 'programs/test/selftest' program runs the 'XXX_self_test()' functions
Dcompat.sh40 : ${M_SRV:=../programs/ssl/ssl_server2}
41 : ${M_CLI:=../programs/ssl/ssl_client2}
Dssl-opt.sh45 : ${P_SRV:=../programs/ssl/ssl_server2}
46 : ${P_CLI:=../programs/ssl/ssl_client2}
47 : ${P_PXY:=../programs/test/udp_proxy}
48 : ${P_QUERY:=../programs/test/query_compile_time_config}
/mbedtls-3.4.0/ChangeLog.d/
D00README.md10 * Bug fixes in the library or in sample programs: fixing a security hole,
13 * New features in the library, new sample programs, or new platform support.
/mbedtls-3.4.0/programs/test/
Dgenerate_cpp_dummy_build.sh3 DEFAULT_OUTPUT_FILE=programs/test/cpp_dummy_build.cpp
/mbedtls-3.4.0/programs/fuzz/
DREADME.md50 * Build mbedtls programs ssl_server2 and ssl_client2
/mbedtls-3.4.0/scripts/data_files/
Dvs6-app-template.dsp88 SOURCE=..\..\programs\<PATHNAME>.c
/mbedtls-3.4.0/docs/architecture/psa-migration/
Dtesting.md52 - in `programs/ssl/ssl_client2` a new option `key_opaque` that causes the
/mbedtls-3.4.0/docs/
D3.0-migration-guide.md778 callback type should be straightforward — see the example programs
779 `programs/ssl/ssl_client2` and `programs/ssl/ssl_server2` for callbacks
861 program `programs/ssl/ssl_client2.c`.
/mbedtls-3.4.0/docs/architecture/testing/
Dinvasive-testing.md34programs, it's ok to include internal header files from `library/`. Do not define non-public inte…
/mbedtls-3.4.0/tests/suites/
Dtest_suite_rsa.data154 # The test data has been generated by signing a test file using `programs/pkey/rsa_sign` after maki…

12