Home
last modified time | relevance | path

Searched refs:message (Results 1 – 18 of 18) sorted by relevance

/mcuboot-latest/boot/espressif/
DCMakeLists.txt11 message(FATAL_ERROR "MCUBOOT_TARGET not defined. Please pass -DMCUBOOT_TARGET flag.")
32message("CMAKE_TOOLCHAIN_FILE not defined, searching for toolchain compiler in TOOLCHAIN_BIN_DIR: …
37message(FATAL_ERROR "No C compiler found. Please ensure that TOOLCHAIN_BIN_DIR directory contains …
41 message("C compiler found: ${CMAKE_C_COMPILER}")
45message(FATAL_ERROR "No C++ compiler found. Please ensure that TOOLCHAIN_BIN_DIR directory contain…
48 message("CXX compiler found: ${CMAKE_CXX_COMPILER}")
52message("No user-defined toolchain, setting default toolchain file: ${CMAKE_TOOLCHAIN_FILE}")
60 message("CMAKE_TOOLCHAIN_FILE: ${CMAKE_TOOLCHAIN_FILE}")
81 message(FATAL_ERROR "Unsupported target ${MCUBOOT_TARGET}")
88 message(WARNING "ESP_HAL_PATH not defined, checking if IDF_PATH exists.")
[all …]
/mcuboot-latest/docs/release-notes.d/
Dfix-ram-load-zephyr-address.md1 - Fixed chain load address output log message for RAM load
/mcuboot-latest/sim/simflash/src/
Dlib.rs71 fn ebounds<T: AsRef<str>>(message: T) -> FlashError { in ebounds()
72 FlashError::OutOfBounds(message.as_ref().to_owned()) in ebounds()
76 fn ewrite<T: AsRef<str>>(message: T) -> FlashError { in ewrite()
77 FlashError::Write(message.as_ref().to_owned()) in ewrite()
81 fn esimulatedwrite<T: AsRef<str>>(message: T) -> FlashError { in esimulatedwrite()
82 FlashError::SimulatedFail(message.as_ref().to_owned()) in esimulatedwrite()
/mcuboot-latest/boot/zephyr/
DCMakeLists.txt43 message(FATAL_ERROR "
321 message(FATAL_ERROR "Signature key file defined in multiple conf files")
334 message("MCUBoot bootloader key file: ${KEY_FILE}")
348message(WARNING "WARNING: Using default MCUboot signing key file, this file is for debug use only …
376 message(FATAL_ERROR "Encryption key file defined in multiple conf files")
389 message("MCUBoot bootloader encryption key file: ${KEY_FILE}")
402message(WARNING "WARNING: Using default MCUboot encryption key file, this file is for debug use on…
440 message(FATAL_ERROR "Unable to get parent of node: ${${node}}")
485message(WARNING "Unable to determine size of slot0 partition, cannot calculate minimum sector usag…
487message(WARNING "Unable to determine erase size of slot0 partition, cannot calculate minimum secto…
[all …]
DKconfig650 The maximum size of the CBOR message which stores boot
/mcuboot-latest/boot/mbed/
Dmcuboot_imgtool.cmake13 message(STATUS "mcuboot: Installing imgtool into Mbed's Python virtualenv")
19message(FATAL_ERROR "The mcuboot imgtool python package needs to be installed (from mcuboot/script…
31message(FATAL_ERROR "Must specify path to valid image signing key via MCUBOOT_SIGNING_KEY CMake op…
43message(FATAL_ERROR "Since mcuboot.encrypt-rsa is enabled, you must specify the path to a valid im…
54message(FATAL_ERROR "Hex file output must be enabled to use mcuboot. Set MBED_OUTPUT_EXT to empty…
58message(FATAL_ERROR "You must set the project version to sign images by passing a version number i…
66 message(FATAL_ERROR "Couldn't find MCUBOOT_HEADER_SIZE in Mbed configuration!")
72 message(FATAL_ERROR "Couldn't find MCUBOOT_SLOT_SIZE in Mbed configuration!")
145 message(FATAL_ERROR "Couldn't find MCUBOOT_HEADER_SIZE in Mbed configuration!")
/mcuboot-latest/boot/espressif/include/crypto_config/
Dec256.cmake16 message(FATAL_ERROR "EC256 signature verification using Mbed TLS lib is not supported")
Drsa.cmake27 message(FATAL_ERROR "RSA signature verification using Tinycrypt lib is not supported")
Ded25519.cmake16 message(FATAL_ERROR "ED25519 image signing using Mbed TLS lib is not supported")
/mcuboot-latest/boot/espressif/tools/
Dutils.cmake42 message(FATAL_ERROR "Could not find ${VAR_NAME} in ${HEADER_FILE}")
/mcuboot-latest/boot/bootutil/src/
Dimage_ed25519.c29 extern int ED25519_verify(const uint8_t *message, size_t message_len,
/mcuboot-latest/docs/
DSECURITY.md38 of any message.
Dtestplan-zephyr.md42 This should print a message: `boot_swap_type: Swap type: test`, and
DSubmittingPatches.md8 Each commit has to have, in the commit message, a "Signed-off-by" line
Dimgtool.md147 -h, --help Show this message and exit.
/mcuboot-latest/scripts/imgtool/
Dimage.py616 message = digest
620 message = bytes(self.payload)
651 sig = key.sign_digest(message)
/mcuboot-latest/ext/tinycrypt/documentation/
Dtinycrypt.rst137 * The tc_hmac_final function, responsible for computing the message tag,
164 * The AES-CTR mode limits the size of a data message they encrypt to 2^32
/mcuboot-latest/ext/fiat/src/
Dcurve25519.c1052 int ED25519_verify(const uint8_t *message, size_t message_len, in ED25519_verify() argument
1110 ret = mbedtls_sha512_update_ret(&ctx, message, message_len); in ED25519_verify()
1130 rc = tc_sha512_update(&s, message, message_len); in ED25519_verify()