/mcuboot-3.7.0/boot/bootutil/include/bootutil/crypto/ |
D | rsa.h | 92 psa_status_t status = PSA_ERROR_INVALID_ARGUMENT; in bootutil_rsa_oaep_decrypt() local 98 status = psa_get_key_attributes(ctx->key_id, &key_attr); in bootutil_rsa_oaep_decrypt() 99 if (status != PSA_SUCCESS) { in bootutil_rsa_oaep_decrypt() 107 status = psa_asymmetric_decrypt(ctx->key_id, PSA_ALG_RSA_OAEP(PSA_ALG_SHA_256), in bootutil_rsa_oaep_decrypt() 110 return (int)status; in bootutil_rsa_oaep_decrypt() 121 psa_status_t status = PSA_ERROR_INVALID_ARGUMENT; in bootutil_rsa_parse_private_key() local 129 status = psa_import_key(&key_attributes, *p, (end - *p), &ctx->key_id); in bootutil_rsa_parse_private_key() 130 return (int)status; in bootutil_rsa_parse_private_key() 144 psa_status_t status = PSA_ERROR_INVALID_ARGUMENT; in bootutil_rsa_parse_public_key() local 152 status = psa_import_key(&key_attributes, *p, (end - *p), &ctx->key_id); in bootutil_rsa_parse_public_key() [all …]
|
D | sha.h | 86 psa_status_t status = psa_hash_setup(ctx, PSA_ALG_SHA_384); in bootutil_sha_init() local 88 psa_status_t status = psa_hash_setup(ctx, PSA_ALG_SHA_256); in bootutil_sha_init() local 90 return (int)status; in bootutil_sha_init()
|
/mcuboot-3.7.0/sim/src/ |
D | lib.rs | 139 let mut status = RunStatus::new(); in main() localVariable 150 status.run_single(device, align, 0xff); in main() 157 status.run_single(dev, align, erased_val); in main() 163 if status.failures > 0 { in main() 164 error!("{} Tests ran with {} failures", status.failures + status.passes, status.failures); in main() 167 error!("{} Tests ran successfully", status.passes); in main()
|
/mcuboot-3.7.0/boot/bootutil/include/bootutil/ |
D | mcuboot_status.h | 25 extern void mcuboot_status_change(mcuboot_status_type_t status);
|
/mcuboot-3.7.0/ptest/src/ |
D | main.rs | 69 st2.lock().unwrap().status(); in main() 151 self.status(); in start() 191 self.status(); in done() 194 fn status(&self) { in status() method 313 if cmdout.status.success() { "success" } else { "FAILURE" }, in run() 322 if !cmdout.status.success() { in run()
|
/mcuboot-3.7.0/ext/mbedtls-asn1/include/mbedtls/ |
D | platform.h | 281 extern void (*mbedtls_exit)( int status ); 292 int mbedtls_platform_set_exit( void (*exit_func)( int status ) );
|
/mcuboot-3.7.0/boot/zephyr/boards/ |
D | nrf52840dk_ram.overlay | 35 status = "okay";
|
D | nrf52840dk_ram_multi.overlay | 43 status = "okay";
|
/mcuboot-3.7.0/boot/bootutil/src/ |
D | swap_move.c | 149 uint8_t status; in swap_read_status_bytes() local 171 rc = flash_area_read(fap, off + (i - 1) * write_sz, &status, 1); in swap_read_status_bytes() 176 if (bootutil_buffer_is_erased(fap, &status, 1)) { in swap_read_status_bytes()
|
D | swap_scratch.c | 90 uint8_t status; in swap_read_status_bytes() local 109 &status, 1); in swap_read_status_bytes() 114 if (bootutil_buffer_is_erased(fap, &status, 1)) { in swap_read_status_bytes()
|
/mcuboot-3.7.0/docs/ |
D | imgtool.md | 115 does not overflow into the swap status area (metadata). If swap upgrades are 117 status area size when calculating overflow.
|
D | release-notes.md | 18 sectors (which is the slot size minus the swap status and moved 20 - bootutil: Added debug logging to show write location of swap status 436 overflow the status area, `--slot-size` was added and `--pad` was updated
|
D | readme-zephyr.md | 252 * Custom image list - This command allows fetching version and installation status (custom properti…
|
/mcuboot-3.7.0/ |
D | CODE_OF_CONDUCT.md | 9 identity and expression, level of experience, education, socio-economic status,
|
/mcuboot-3.7.0/boot/zephyr/ |
D | Kconfig | 684 bool "Enable hooks for responding to MCUboot status changes" 686 This will call a handler when the MCUboot status changes which allows 687 for some level of user feedback, for instance to change LED status to 689 'void mcuboot_status_change(mcuboot_status_type_t status)' where
|