Home
last modified time | relevance | path

Searched refs:target (Results 1 – 23 of 23) sorted by relevance

/mbedtls-3.5.0/scripts/mbedtls_dev/
Dtest_data_generation.py229 options.targets = [os.path.basename(re.sub(r'\.data\Z', r'', target))
230 for target in options.targets
231 if target != '-']
234 for target in options.targets:
235 generator.generate_target(target)
/mbedtls-3.5.0/
DCMakeLists.txt6 # 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
65 option(DISABLE_PACKAGE_CONFIG_AND_INSTALL "Disable package configuration, target export and install…
126 set(target "${CMAKE_CURRENT_SOURCE_DIR}/${base_name}") variable
131 if (EXISTS ${target} AND NOT EXISTS ${link})
133 execute_process(COMMAND ln -s ${target} ${link}
138 message(FATAL_ERROR "Could not create symbolic link for: ${target} --> ${output}")
141 if (IS_DIRECTORY ${target})
142 … file(GLOB_RECURSE files FOLLOW_SYMLINKS LIST_DIRECTORIES false RELATIVE ${target} "${target}/*")
[all …]
DREADME.md75 * If not cross-compiling, running `make` with any target, or just `make`, will automatically genera…
103 In order to build for a Windows platform, you should use `WINDOWS_BUILD=1` if the target is Windows…
213 its include directories to your target (transitively, in the case of `PUBLIC` or
DChangeLog39 size and improving performance (depending on compiler and target
88 for a target CPU that supports the requisite instructions (for example
90 compilers still require MBEDTLS_HAVE_ASM and a 64-bit target.)
211 compiler target flags on the command line; the library now sets target
534 disables the target export/installation and package configuration.
1489 mbedcrypto, mbedx509 and apidoc CMake target names. This can be used by
1490 external CMake projects that include this one to avoid CMake target name
1491 clashes. The default value of this variable is "", so default target names
2577 the target system cannot be deduced automatically, by setting the option
3555 * Fix potential build failures related to the 'apidoc' target, introduced
[all …]
/mbedtls-3.5.0/tests/scripts/
Dtranslate_ciphers.py184 def main(target, names): argument
185 print(format_ciphersuite_names(target, names))
192 main(ARGS.target, ARGS.names)
/mbedtls-3.5.0/library/
DCMakeLists.txt303 foreach(target IN LISTS target_libraries)
304 add_library(MbedTLS::${target} ALIAS ${target}) # add_subdirectory support
310 target_include_directories(${target}
315 TARGETS ${target}
321 endforeach(target)
Daesce.c56 # pragma clang attribute push (__attribute__((target("crypto"))), apply_to=function)
63 # pragma GCC target ("arch=armv8-a+crypto")
Dsha256.c68 # pragma clang attribute push (__attribute__((target("crypto"))), apply_to=function)
78 # pragma GCC target ("arch=armv8-a+crypto")
Dsha512.c83 # pragma clang attribute push (__attribute__((target("sha3"))), apply_to=function)
91 # pragma GCC target ("arch=armv8.2-a+sha3")
/mbedtls-3.5.0/scripts/
Dassemble_changelog.py316 def list_merges(some_hash, target, *options): argument
323 '..'.join([some_hash, target])])
332 target = 'HEAD'
336 ancestry = frozenset(cls.list_merges(some_hash, target,
340 first_parents = cls.list_merges(some_hash, target,
Dwindows_msbuild.bat4 @rem https://docs.microsoft.com/en-us/cpp/build/how-to-modify-the-target-framework-and-…
/mbedtls-3.5.0/programs/test/cmake_subproject/
DCMakeLists.txt3 # Test the target renaming support by adding a prefix to the targets built
/mbedtls-3.5.0/programs/test/cmake_package_install/
DCMakeLists.txt23 --target install)
/mbedtls-3.5.0/tests/suites/
Dtest_suite_psa_crypto_slot_management.function530 /* Prepare the target slot. */
542 /* Destroy the source to ensure that this doesn't affect the target. */
545 /* If the target key is persistent, restart the system to make
553 /* Test that the target slot has the expected content. */
595 * Source and target key attributes may have been returned by
651 /* Populate the target slot. */
675 /* Test that the target slot is unaffected. */
Dtest_suite_psa_crypto.data1153 Copy key: RSA key pair, wildcard algorithm in target
1157 Copy key: RSA key pair, wildcard algorithm in source and target
1161 Copy key: source=ECDSA+ECDH, target=ECDSA+ECDH
1165 Copy key: source=ECDSA+ECDH, target=ECDSA+ECDH, extended usage flags
1169 Copy key: source=ECDSA+ECDH, target=ECDSA+0
1173 Copy key: source=ECDSA+ECDH, target=0+ECDH
1177 Copy key: source=ECDSA(any)+ECDH, target=ECDSA(SHA256)+ECDH
1181 Copy key: source=ECDH+ECDSA(any), target=ECDH+ECDSA(SHA256)
1249 Copy key: RSA key pair, wildcard algorithm in target, opaque
1253 Copy key: RSA key pair, wildcard algorithm in source and target, opaque
[all …]
Dtest_suite_mps.function827 * simple conversion to a fuzz target.
Dtest_suite_psa_crypto.function1398 /* Skip the test case if the target running the test cannot
2445 /* Prepare the target attributes. */
2466 /* Destroy the source to ensure that this doesn't affect the target. */
2469 /* Test that the target slot has the expected content and policy. */
2501 * Source and target key attributes may have been returned by
2541 /* Prepare the target attributes. */
/mbedtls-3.5.0/configs/
DREADME.txt5 this target. They can be used as a basis for custom configurations.
/mbedtls-3.5.0/programs/test/
DCMakeLists.txt55 # this file will also be used in another directory, so create a target, see
/mbedtls-3.5.0/programs/fuzz/
DREADME.md6 …zz driver, which will generate inputs, try to process them with the fuzz target, and alert in case…
/mbedtls-3.5.0/docs/proposed/
Dpsa-driver-developer-guide.md33 * An object file compiled for the target platform defining the functions required by the driver des…
Dpsa-driver-interface.md55 * An object file compiled for the target platform defining the entry point functions specified by t…
/mbedtls-3.5.0/tests/
DCMakeLists.txt136 # CMake generates sub-makefiles for each target and calls them in subprocesses.