/mcuboot-latest/scripts/tests/ |
D | test_commands.py | 52 assert result_short.output == result_long.output 57 assert result_empty.output == result_short.output 66 assert result.output == imgtool_version + "\n" 70 assert result_help.output != result.output 92 assert result_short.output == result_long.output 106 assert result_cmd1.output != result_general.output 112 assert result_cmd1.output != result_cmd2.output
|
/mcuboot-latest/boot/bootutil/include/bootutil/crypto/ |
D | sha.h | 120 uint8_t *output) in bootutil_sha_finish() argument 125 return (int)psa_hash_finish(ctx, output, PSA_HASH_LENGTH(PSA_ALG_SHA_512), &hash_length); in bootutil_sha_finish() 127 return (int)psa_hash_finish(ctx, output, PSA_HASH_LENGTH(PSA_ALG_SHA_384), &hash_length); in bootutil_sha_finish() 129 return (int)psa_hash_finish(ctx, output, PSA_HASH_LENGTH(PSA_ALG_SHA_256), &hash_length); in bootutil_sha_finish() 183 uint8_t *output) 188 ret = mbedtls_sha512_finish_ret(ctx, output); 190 ret = mbedtls_sha256_finish_ret(ctx, output); 233 uint8_t *output) in bootutil_sha_finish() argument 236 return tc_sha512_final(output, ctx); in bootutil_sha_finish() 238 return tc_sha256_final(output, ctx); in bootutil_sha_finish() [all …]
|
D | rsa.h | 89 uint8_t *output, in bootutil_rsa_oaep_decrypt() argument 109 output, output_max_len, olen); in bootutil_rsa_oaep_decrypt() 196 static int fake_rng(void *p_rng, unsigned char *output, size_t len); 204 uint8_t *output, 210 NULL, 0, olen, input, output, output_max_len); 213 NULL, 0, olen, input, output, output_max_len); 344 …ic inline int bootutil_rsa_public(bootutil_rsa_context *ctx, const uint8_t *input, uint8_t *output) 346 return mbedtls_rsa_public(ctx, input, output);
|
D | ecdh_p256.h | 74 static int fake_rng(void *p_rng, unsigned char *output, size_t len);
|
/mcuboot-latest/ptest/src/ |
D | main.rs | 132 output: Vec<u8>, field 154 fn done(&mut self, fs: &FeatureSet, output: Result<TestResult>) { in done() 158 match output { in done() 159 Ok(output) => { in done() 160 if !output.success || log_all() { in done() 164 let base = if output.success { "success" } else { "failure" }; in done() 180 fd.write_all(&output.output).unwrap(); in done() 181 if !output.success { in done() 303 let mut output = vec![]; in run() localVariable 310 .output()?; in run() [all …]
|
/mcuboot-latest/scripts/ |
D | assemble.py | 46 def __init__(self, output, bootdir, edt): argument 49 os.unlink(output) 53 self.output = output 84 with open(self.output, 'ab') as ofd: 140 output = Assembly(args.output, args.bootdir, edt) 142 output.add_image(os.path.join(args.bootdir, 'zephyr', 'zephyr.bin'), 'mcuboot') 143 output.add_image(args.primary, "image-0") 145 output.add_image(args.secondary, "image-1")
|
/mcuboot-latest/ext/tinycrypt/tests/ |
D | test_ctr_prng.c | 270 uint8_t * output = (uint8_t *)malloc(expectedlen); in executePRNG_TestVector() local 292 (void)tc_ctr_prng_generate(&ctx, additional_input1, additionallen1, output, expectedlen); in executePRNG_TestVector() 293 (void)tc_ctr_prng_generate(&ctx, additional_input2, additionallen2, output, expectedlen); in executePRNG_TestVector() 296 if (output[i] != expected[i]) { in executePRNG_TestVector() 308 free(output); in executePRNG_TestVector() 318 uint8_t output[32]; in test_reseed() local 328 ret = tc_ctr_prng_generate(&ctx, 0, 0, output, sizeof output); in test_reseed() 335 ret = tc_ctr_prng_generate(&ctx, 0, 0, output, sizeof output); in test_reseed() 350 ret = tc_ctr_prng_generate(&ctx, 0, 0, output, sizeof output); in test_reseed() 448 uint8_t output[32]; in test_robustness() local [all …]
|
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/ |
D | md.h | 288 int mbedtls_md_finish( mbedtls_md_context_t *ctx, unsigned char *output ); 309 unsigned char *output ); 330 unsigned char *output ); 394 int mbedtls_md_hmac_finish( mbedtls_md_context_t *ctx, unsigned char *output); 437 unsigned char *output );
|
D | rsa.h | 527 unsigned char *output ); 562 unsigned char *output ); 592 unsigned char *output ); 619 unsigned char *output ); 654 unsigned char *output ); 692 unsigned char *output, 729 unsigned char *output, 771 unsigned char *output,
|
D | pk.h | 231 const unsigned char *input, unsigned char *output, 574 unsigned char *output, size_t *olen, size_t osize, 597 unsigned char *output, size_t *olen, size_t osize,
|
/mcuboot-latest/ext/nrf/ |
D | cc310_glue.h | 70 uint8_t *output) in cc310_sha256_finalize() argument 73 (nrf_cc310_bl_hash_digest_sha256_t *)output); in cc310_sha256_finalize()
|
/mcuboot-latest/docs/release-notes.d/ |
D | fix-ram-load-zephyr-address.md | 1 - Fixed chain load address output log message for RAM load
|
D | compatible-slots.md | 5 - Added debug logs for zephyr to output discrepencies in erase
|
/mcuboot-latest/scripts/imgtool/ |
D | main.py | 148 def getpub(key, encoding, lang, output): argument 158 if not output: 159 output = sys.stdout 163 key.emit_c_public(file=output) 165 key.emit_rust_public(file=output) 167 key.emit_public_pem(file=output) 169 key.emit_raw_public(file=output) 185 def getpubhash(key, output, encoding): argument 190 if not output: 191 output = sys.stdout [all …]
|
/mcuboot-latest/boot/bootutil/src/ |
D | bootutil_priv.h | 501 #define LOAD_IMAGE_DATA(hdr, fap, start, output, size) \ argument 502 (memcpy((output),(void*)(IMAGE_RAM_BASE + (hdr)->ih_load_addr + (start)), \ 509 #define LOAD_IMAGE_DATA(hdr, fap, start, output, size) \ argument 510 (flash_area_read((fap), (start), (output), (size)))
|
D | encrypted.c | 411 static int fake_rng(void *p_rng, unsigned char *output, size_t len) in fake_rng() argument 417 output[i] = (char)i; in fake_rng()
|
/mcuboot-latest/boot/cypress/BlinkyApp/ |
D | Readme.md | 137 - `MAKEINFO` - 0 (default) - less build info, 1 - verbose output of compilation. 138 - `HEADER_OFFSET` - 0 (default) - no offset of output hex file, 0x%VALUE% - offset for output hex f… 144 ### Example terminal output
|
/mcuboot-latest/samples/runtime-source/zephyr/ |
D | README.md | 53 Open a serial terminal to see the output and reset the board. It shall boot the
|
/mcuboot-latest/boot/cypress/platforms/PSOC_062_2M/CM0P/GCC_ARM/ |
D | cy8c6xxa_cm0plus.ld | 8 * input files should be mapped into the output file, and to control the memory 9 * layout of the output file. 46 /* Force symbol to be entered in the output file as an undefined symbol. Doing
|
/mcuboot-latest/boot/cypress/BlinkyApp/linker/ |
D | BlinkyApp_template.ld | 8 * input files should be mapped into the output file, and to control the memory 9 * layout of the output file. 50 /* Force symbol to be entered in the output file as an undefined symbol. Doing
|
/mcuboot-latest/boot/cypress/MCUBootApp/ |
D | MCUBootApp.ld | 8 * input files should be mapped into the output file, and to control the memory 9 * layout of the output file. 46 /* Force symbol to be entered in the output file as an undefined symbol. Doing
|
/mcuboot-latest/sim/mcuboot-sys/csupport/ |
D | run.c | 118 fake_rng(void *p_rng, unsigned char *output, size_t len) in fake_rng() argument 124 output[i] = (char)i; in fake_rng()
|
/mcuboot-latest/boot/cypress/platforms/PSOC_062_2M/CM4/GCC_ARM/ |
D | cy8c6xxa_cm4_dual.ld | 8 * input files should be mapped into the output file, and to control the memory 9 * layout of the output file. 49 /* Force symbol to be entered in the output file as an undefined symbol. Doing
|
/mcuboot-latest/ext/tinycrypt/documentation/ |
D | tinycrypt.rst | 146 PRNGs only stretch the seed into a seemingly random output of arbitrary 147 length. The security of the output is exactly equal to the 171 PRNGs only stretch the seed into a seemingly random output of arbitrary 172 length. The security of the output is exactly equal to the
|
/mcuboot-latest/boot/mbed/ |
D | mcuboot_imgtool.cmake | 54 …message(FATAL_ERROR "Hex file output must be enabled to use mcuboot. Set MBED_OUTPUT_EXT to empty… 192 --output ${SIGNING_KEYS_C_PATH}
|