/mcuboot-3.7.0/ |
D | Cargo.lock | 6 name = "aes" 19 name = "aho-corasick" 28 name = "atty" 39 name = "base64" 45 name = "bootsim" 68 name = "bumpalo" 74 name = "byteorder" 80 name = "cc" 86 name = "cfg-if" 92 name = "cipher" [all …]
|
/mcuboot-3.7.0/ptest/ |
D | Cargo.lock | 6 name = "addr2line" 15 name = "adler" 21 name = "aho-corasick" 30 name = "atty" 41 name = "autocfg" 47 name = "backtrace" 62 name = "bitflags" 68 name = "cc" 74 name = "cfg-if" 80 name = "chrono" [all …]
|
/mcuboot-3.7.0/.github/workflows/ |
D | imgtool.yaml | 8 name: imgtool 22 - name: Set up Python ${{ matrix.python-version }} 29 - name: Install dependencies 32 - name: Run tests 37 - name: Upload test results 41 name: pytest-results-${{ matrix.python-version }} 52 - name: Cache pip 57 - name: Install packages 61 - name: Publish
|
D | zephyr_build.yaml | 4 name: Build Zephyr samples with Twister 51 - name: Set versions when workflow_dispatch 57 - name: Set versions when pull_request 62 - name: Checkout Zephyr 69 - name: Setup Zephyr 75 - name: Checkout MCUBoot 82 - name: Run Twister tests 96 - name: Upload Tests Results 100 name: Tests Results
|
D | mynewt.yaml | 8 name: Mynewt 21 - name: Print the environment 27 - name: Signed commit check 31 - name: Mynewt install 34 - name: Mynewt run
|
D | espressif.yaml | 11 name: Espressif 42 - name: Print the environment 48 - name: Signed commit check 52 - name: Espressif install 55 - name: Espressif run
|
D | fih_tests.yaml | 7 name: FIH hardening 40 - name: Print the environment 46 - name: Signed commit check 50 - name: FIH hardening test install 53 - name: FIH hardening test run
|
D | sim.yaml | 8 name: Sim 58 - name: Print the environment 64 - name: Signed commit check 68 - name: Install stable Rust 72 - name: Sim install 75 - name: Sim run
|
D | stale_issue.yml | 1 name: "Close stale pull requests/issues" 8 name: Find Stale issues and PRs
|
/mcuboot-3.7.0/samples/zephyr/ |
D | test-compile.go | 7 // go run test-compile.go -out name.tar 24 var outFile = flag.String("out", "test-images.zip", "Name of zip file to put built tests into") 73 name := *outFile 74 file, err := os.OpenFile(name, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0644) 104 header.Name = testName + "/" 111 for _, name := range []string{ 116 err = b.add(testName, name, name) 142 header.Name = path.Join(baseName, zipName)
|
D | run-tests.go | 40 var logIn = flag.String("login", "/tmp/zephyr.out", "File name of terminal log from Zephyr device") 45 var preBuilt = flag.String("prebuilt", "", "Name of file with prebuilt tests") 81 fmt.Printf("Running %q\n", group.Name) 83 fmt.Fprintf(lg, "---- Running %q\n", group.Name) 211 // based on the directory name. 219 func NewExtractor(name string) (*Extractor, error) { 220 f, err := os.Open(name) 246 // Extract extracts the files of the given directory name into the 254 if len(file.Name) > len(prefix) && strings.HasPrefix(file.Name, prefix) { 255 outName := file.Name[len(prefix):len(file.Name)]
|
/mcuboot-3.7.0/scripts/imgtool/keys/ |
D | __init__.py | 79 if pk.curve.name not in ('secp256r1', 'secp384r1'): 80 raise Exception("Unsupported EC curve: " + pk.curve.name) 83 if pk.curve.name == 'secp256r1': 85 elif pk.curve.name == 'secp384r1': 88 if pk.curve.name not in ('secp256r1', 'secp384r1'): 89 raise Exception("Unsupported EC curve: " + pk.curve.name) 92 if pk.curve.name == 'secp256r1': 94 elif pk.curve.name == 'secp384r1':
|
D | ed25519.py | 25 def _unsupported(self, name): argument 26 raise Ed25519UsageError("Operation {} requires private key".format(name))
|
D | x25519.py | 26 def _unsupported(self, name): argument 27 raise X25519UsageError("Operation {} requires private key".format(name))
|
/mcuboot-3.7.0/sim/tests/ |
D | core.rs | 28 ($name:ident, $arg: ident, $body:expr) => { 30 fn $name() { 42 ($name:ident, $maker:ident($($margs:expr),*), $test:ident($($targs:expr),*)) => { 43 test_shell!($name, r, { 45 dump_image(&image, stringify!($name)); 185 /// Dump an image if that makes sense. The name is the name of the test 187 /// one of its comma separate strings a substring of this name, then this 190 fn dump_image(image: &Images, name: &str) { in dump_image() 193 req == "all" || name.contains(req) in dump_image() 196 let full_name = format!("{}-{:04}", name, count); in dump_image()
|
/mcuboot-3.7.0/samples/zephyr/mcutests/ |
D | mcutests.go | 7 Name string 12 Name: "Good RSA", 45 Name: "Good ECDSA", 78 Name: "Overwrite", 111 Name: "Bad RSA", 144 Name: "Bad RSA", 177 Name: "No bootcheck", 210 Name: "Wrong RSA", 243 Name: "Wrong ECDSA",
|
/mcuboot-3.7.0/boot/nuttx/include/flash_map_backend/ |
D | flash_map_backend.h | 72 * Name: flash_area_get_id 91 * Name: flash_area_get_device_id 110 * Name: flash_area_get_sector 129 * Name: flash_area_get_off 149 * Name: flash_area_get_size 168 * Name: flash_sector_get_off 188 * Name: flash_sector_get_size 211 * Name: flash_area_open 231 * Name: flash_area_close 247 * Name: flash_area_read [all …]
|
/mcuboot-3.7.0/ext/tinycrypt/tests/ |
D | test_ecc_utils.c | 39 * - Neither the name of Intel Corporation nor the names of its contributors 184 int check_ecc_result(const int num, const char *name, in check_ecc_result() argument 191 TC_PRINT("\n Vector #%02d check %s - FAILURE:\n\n", num, name); in check_ecc_result() 198 TC_PRINT(" Vector #%02d check %s - success\n", num, name); in check_ecc_result() 203 int check_code(const int num, const char *name, const int expected, in check_code() argument 208 TC_ERROR("\n Vector #%02d check %s - FAILURE:\n", num, name); in check_code() 214 TC_PRINT(" Vector #%02d check %s - success (%d=%d)\n", num, name, in check_code()
|
/mcuboot-3.7.0/ext/fiat/ |
D | README.chromium | 1 Name: Fiat-Crypto: Synthesizing Correct-by-Construction Code for Cryptographic Primitives 2 Short Name: fiat-crypto
|
/mcuboot-3.7.0/ext/tinycrypt/tests/include/ |
D | test_utils.h | 16 * - Neither the name of Intel Corporation nor the names of its contributors 68 #define TC_START(name) PRINT_DATA("tc_start() - %s\n", name) argument 71 /* prints result and the function name */
|
D | test_ecc_utils.h | 39 * - Neither the name of Intel Corporation nor the names of its contributors 84 int check_ecc_result(const int num, const char *name, 95 int check_code(const int num, const char *name, const int expected,
|
/mcuboot-3.7.0/boot/zcbor/include/ |
D | zcbor_encode.h | 38 * This gives you a state variable named @p name. The variable functions like 41 * @param[in] name The name of the new state variable. 47 #define ZCBOR_STATE_E(name, num_backups, payload, payload_size, elem_count) \ argument 48 zcbor_state_t name[((num_backups) + 2)]; \ 50 zcbor_new_encode_state(name, ZCBOR_ARRAY_SIZE(name), payload, payload_size, elem_count); \
|
/mcuboot-3.7.0/boot/zephyr/include/boot_serial/ |
D | boot_serial_extensions.h | 36 #define MCUMGR_HANDLER_DEFINE(name, _handler) \ argument 37 STRUCT_SECTION_ITERABLE(mcuboot_bs_custom_handlers, name) = { \
|
/mcuboot-3.7.0/boot/nuttx/src/flash_map_backend/ |
D | flash_map_backend.c | 163 * Name: lookup_flash_device_by_id 194 * Name: lookup_flash_device_by_offset 229 * Name: flash_area_open 336 * Name: flash_area_close 379 * Name: flash_area_read 449 * Name: flash_area_write 517 * Name: flash_area_erase 583 * Name: flash_area_align 613 * Name: flash_area_erased_val 644 * Name: flash_area_get_sectors [all …]
|
/mcuboot-3.7.0/ext/tinycrypt/lib/include/tinycrypt/ |
D | hmac_prng.h | 16 * - Neither the name of Intel Corporation nor the names of its contributors 52 * because a personalization string (the host name concatenated 103 * name) and is the last line of defense against failure of the
|