| /mcuboot-latest/ext/tinycrypt/lib/source/ |
| D | sha256.c | 183 unsigned int a, b, c, d, e, f, g, h; in compress() local 191 e = iv[4]; f = iv[5]; g = iv[6]; h = iv[7]; in compress() 196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 198 h = g; g = f; f = e; e = d + t1; in compress() 209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 211 h = g; g = f; f = e; e = d + t1; in compress() 216 iv[4] += e; iv[5] += f; iv[6] += g; iv[7] += h; in compress()
|
| D | hmac_prng.c | 78 static void update(TCHmacPrng_t prng, const uint8_t *e, unsigned int len) in update() argument 87 (void)tc_hmac_update(&prng->h, e, len); in update() 101 (void)tc_hmac_update(&prng->h, e, len); in update()
|
| /mcuboot-latest/ext/tinycrypt-sha512/lib/source/ |
| D | sha512.c | 200 uint64_t a, b, c, d, e, f, g, h; in compress() local 208 e = iv[4]; f = iv[5]; g = iv[6]; h = iv[7]; in compress() 213 t1 += h + Sigma1(e) + Ch(e, f, g) + k512[i]; in compress() 215 h = g; g = f; f = e; e = d + t1; in compress() 226 t1 += h + Sigma1(e) + Ch(e, f, g) + k512[i]; in compress() 228 h = g; g = f; f = e; e = d + t1; in compress() 233 iv[4] += e; iv[5] += f; iv[6] += g; iv[7] += h; in compress()
|
| /mcuboot-latest/samples/zephyr/ |
| D | run-tests.go | 242 func (e *Extractor) Close() error { 243 return e.file.Close() 249 func (e *Extractor) Extract(dir string) error { 253 for _, file := range e.zip.File { 258 err := e.single(file, outName) 276 func (e *Extractor) single(file *zip.File, outName string) error {
|
| D | README.md | 13 installed on most systems using the system package manager, e.g., for
|
| /mcuboot-latest/scripts/imgtool/keys/ |
| D | __init__.py | 58 except TypeError as e: 59 msg = str(e) 62 raise e
|
| /mcuboot-latest/docs/release-notes.d/ |
| D | fix-zephyr-sysbuild-name.md | 2 applications (i.e. tests) using the name sysbuild
|
| /mcuboot-latest/scripts/imgtool/ |
| D | image.py | 136 e = STRUCT_ENDIAN_DICT[self.endian] 143 buf = struct.pack(e + 'HH', kind, len(payload)) 145 buf = struct.pack(e + 'BBH', TLV_VALUES[kind], 0, len(payload)) 152 e = STRUCT_ENDIAN_DICT[self.endian] 153 header = struct.pack(e + 'HH', self.magic, len(self)) 572 e = STRUCT_ENDIAN_DICT[self.endian] 575 payload = struct.pack(e + 'I', self.security_counter) 584 e + 'B3x' + 'BBHI', 621 e = STRUCT_ENDIAN_DICT[self.endian] 622 sig_pure = struct.pack(e + '?', True) [all …]
|
| D | main.py | 220 X25519UsageError) as e: 221 raise click.UsageError(e) 269 except ValueError as e: 270 raise click.BadParameter("{}".format(e)) 310 except ValueError as e: 311 raise click.BadParameter("{}".format(e))
|
| /mcuboot-latest/scripts/ |
| D | assemble.py | 50 except OSError as e: 51 if e.errno != errno.ENOENT:
|
| /mcuboot-latest/sim/src/ |
| D | lib.rs | 133 .unwrap_or_else(|e| e.exit()); in main()
|
| /mcuboot-latest/boot/zephyr/ |
| D | Kconfig.firmware_loader | 29 retention system (i.e. an application must set the boot mode to stay
|
| /mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/ |
| D | ecc.h | 154 #define BYTES_TO_WORDS_8(a, b, c, d, e, f, g, h) 0x##d##c##b##a, 0x##h##g##f##e argument
|
| /mcuboot-latest/ptest/src/ |
| D | main.rs | 233 Some(e) => e, in from_yaml()
|
| /mcuboot-latest/docs/ |
| D | readme-mynewt.md | 49 newtmgr --conntype serial --connstring "dev=/dev/ttyUSB0,mtu=256" image upload -e blinky.img
|
| D | readme-nuttx.md | 21 …ns via character device drivers using standard POSIX filesystem operations (e.g. `open()` / `close… 31 …ing the required actions in order to boot a new application firmware image (e.g. deinitialize peri…
|
| D | readme-riot.md | 24 (e.g. `export IMAGE_VERSION= 1.1.1+1`. This variable can be either
|
| D | readme-zephyr.md | 170 size of the 2 partitions (e.g. if a device has a primary slot in main flash 173 The number of sectors must also be evenly divisable by this sector size, e.g. 175 needs adding to the .dts file for the board, e.g. for the nrf52dk_nrf52832 200 the cost of vastly reducing flash lifespan, e.g. for a 32KB firmware update
|
| /mcuboot-latest/sim/mcuboot-sys/src/ |
| D | api.rs | 326 Err(e) => { in map_err() 327 warn!("{}", e); in map_err()
|
| /mcuboot-latest/boot/espressif/port/esp32c3/ld/ |
| D | bootloader.ld | 100 *(.gnu.linkonce.e.*)
|
| /mcuboot-latest/boot/espressif/port/esp32s2/ld/ |
| D | bootloader.ld | 100 *(.gnu.linkonce.e.*)
|
| /mcuboot-latest/boot/espressif/port/esp32s3/ld/ |
| D | bootloader.ld | 100 *(.gnu.linkonce.e.*)
|
| /mcuboot-latest/boot/espressif/port/esp32/ld/ |
| D | bootloader.ld | 99 *(.gnu.linkonce.e.*)
|
| /mcuboot-latest/ext/fiat/src/ |
| D | curve25519.c | 1232 uint8_t e[32]; in x25519_scalar_mult_generic() local 1233 memcpy(e, scalar, 32); in x25519_scalar_mult_generic() 1234 e[0] &= 248; in x25519_scalar_mult_generic() 1235 e[31] &= 127; in x25519_scalar_mult_generic() 1236 e[31] |= 64; in x25519_scalar_mult_generic() 1270 unsigned b = 1 & (e[pos / 8] >> (pos & 7)); in x25519_scalar_mult_generic()
|
| /mcuboot-latest/boot/espressif/port/esp32c2/ld/ |
| D | bootloader.ld | 134 *(.gnu.linkonce.e.*)
|