/mbedtls-latest/ |
D | CMakeLists.txt | 6 # command but rather at the target level using the 10 # directories. That way, a target linking to a library (using the 14 # CMake in order to avoid target name clashes, via the use of 78 option(DISABLE_PACKAGE_CONFIG_AND_INSTALL "Disable package configuration, target export and install… 154 set(target "${CMAKE_CURRENT_SOURCE_DIR}/${base_name}") variable 159 if (EXISTS ${target} AND NOT EXISTS ${link}) 161 execute_process(COMMAND ln -s ${target} ${link} 166 message(FATAL_ERROR "Could not create symbolic link for: ${target} --> ${output}") 169 if (IS_DIRECTORY ${target}) 170 … file(GLOB_RECURSE files FOLLOW_SYMLINKS LIST_DIRECTORIES false RELATIVE ${target} "${target}/*") [all …]
|
D | README.md | 79 * If not cross-compiling, running `make` with any target, or just `make`, will automatically genera… 107 In order to build for a Windows platform, you should use `WINDOWS_BUILD=1` if the target is Windows… 217 its include directories to your target (transitively, in the case of `PUBLIC` or
|
D | ChangeLog | 381 which mainly causes failures when building Windows target using 815 size and improving performance (depending on compiler and target 864 for a target CPU that supports the requisite instructions (for example 866 compilers still require MBEDTLS_HAVE_ASM and a 64-bit target.) 987 compiler target flags on the command line; the library now sets target 1310 disables the target export/installation and package configuration. 2265 mbedcrypto, mbedx509 and apidoc CMake target names. This can be used by 2266 external CMake projects that include this one to avoid CMake target name 2267 clashes. The default value of this variable is "", so default target names 3353 the target system cannot be deduced automatically, by setting the option [all …]
|
/mbedtls-latest/library/ |
D | CMakeLists.txt | 323 foreach(target IN LISTS target_libraries) 324 add_library(MbedTLS::${target} ALIAS ${target}) # add_subdirectory support 330 target_include_directories(${target} 338 target_compile_definitions(${target} 342 target_compile_definitions(${target} 346 TARGETS ${target} 352 endforeach(target)
|
D | aesce.c | 85 # pragma clang attribute push (__attribute__((target("aes"))), apply_to=function) 89 # pragma clang attribute push (__attribute__((target("aes"))), apply_to=function) 93 # pragma GCC target ("+crypto")
|
D | sha256.c | 86 # pragma clang attribute push (__attribute__((target("sha2"))), apply_to=function) 92 # pragma clang attribute push (__attribute__((target("crypto"))), apply_to=function) 102 # pragma GCC target ("arch=armv8-a+crypto")
|
D | aesni.c | 37 #pragma GCC target ("pclmul,sse2,aes") 40 #pragma clang attribute push (__attribute__((target("pclmul,sse2,aes"))), apply_to=function)
|
D | sha512.c | 76 # pragma clang attribute push (__attribute__((target("sha3"))), apply_to=function) 83 # pragma clang attribute push (__attribute__((target("sha3"))), apply_to=function) 91 # pragma GCC target ("arch=armv8.2-a+sha3")
|
/mbedtls-latest/tests/scripts/ |
D | translate_ciphers.py | 172 def main(target, names): argument 173 print(format_ciphersuite_names(target, names)) 180 main(ARGS.target, ARGS.names)
|
D | components-configuration-crypto.sh | 2665 target="t" 2671 target="${target}${opt}" 2678 echo "${target}: ${source_file}; $cmd ${source_file}" >> ${makefile} 2680 deps="${deps} ${target}"
|
/mbedtls-latest/scripts/ |
D | assemble_changelog.py | 312 def list_merges(some_hash, target, *options): argument 319 '..'.join([some_hash, target])]) 328 target = 'HEAD' 332 ancestry = frozenset(cls.list_merges(some_hash, target, 336 first_parents = cls.list_merges(some_hash, target,
|
D | windows_msbuild.bat | 4 @rem https://docs.microsoft.com/en-us/cpp/build/how-to-modify-the-target-framework-and-…
|
/mbedtls-latest/tests/suites/ |
D | test_suite_psa_crypto_slot_management.function | 554 /* Prepare the target slot. */ 566 /* Destroy the source to ensure that this doesn't affect the target. */ 569 /* If the target key is persistent, restart the system to make 577 /* Test that the target slot has the expected content. */ 619 * Source and target key attributes may have been returned by 675 /* Populate the target slot. */ 699 /* Test that the target slot is unaffected. */
|
D | test_suite_psa_crypto.data | 1307 Copy key: RSA key pair, wildcard algorithm in target 1311 Copy key: RSA key pair, wildcard algorithm in source and target 1315 Copy key: source=ECDSA+ECDH, target=ECDSA+ECDH 1319 Copy key: source=ECDSA+ECDH, target=ECDSA+ECDH, extended usage flags 1323 Copy key: source=ECDSA+ECDH, target=ECDSA+0 1327 Copy key: source=ECDSA+ECDH, target=0+ECDH 1331 Copy key: source=ECDSA(any)+ECDH, target=ECDSA(SHA256)+ECDH 1335 Copy key: source=ECDH+ECDSA(any), target=ECDH+ECDSA(SHA256) 1403 Copy key: RSA key pair, wildcard algorithm in target, opaque 1407 Copy key: RSA key pair, wildcard algorithm in source and target, opaque [all …]
|
D | test_suite_rsa.function | 1448 /* This is supposed to succeed as the real target of this test are the
|
/mbedtls-latest/programs/test/cmake_subproject/ |
D | CMakeLists.txt | 3 # Test the target renaming support by adding a prefix to the targets built
|
/mbedtls-latest/programs/test/cmake_package_install/ |
D | CMakeLists.txt | 25 --target install)
|
/mbedtls-latest/configs/ |
D | README.txt | 5 this target. They can be used as a basis for custom configurations.
|
/mbedtls-latest/programs/test/ |
D | CMakeLists.txt | 58 # this file will also be used in another directory, so create a target, see
|
/mbedtls-latest/programs/fuzz/ |
D | README.md | 6 …zz driver, which will generate inputs, try to process them with the fuzz target, and alert in case…
|
/mbedtls-latest/docs/proposed/ |
D | psa-driver-developer-guide.md | 34 * An object file compiled for the target platform defining the functions required by the driver des…
|
/mbedtls-latest/tests/ |
D | CMakeLists.txt | 171 # CMake generates sub-makefiles for each target and calls them in subprocesses.
|
/mbedtls-latest/3rdparty/p256-m/p256-m/ |
D | README.md | 191 For details, see `bench.sh`, `benchmark.c` and `on-target-benchmark/`. 440 - `on-target-*box` on boards based on Cortex-M0 and M4 cores test both
|
/mbedtls-latest/docs/ |
D | psa-driver-example-and-guide.md | 44 …- An object file compiled for the target platform defining the functions required by the driver de…
|
/mbedtls-latest/docs/architecture/ |
D | psa-shared-memory.md | 248 … `volatile` keyword is not sufficient, we may be able to use compiler or target-specific technique… 463 …ow us to ensure that there are no double-accesses due to a bug that only affects a specific target. 475 … allocation of special buffers. FVP testing even requires the tests to be run on a non-host target.
|