/mcuboot-3.4.0/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-3.4.0/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-3.4.0/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-3.4.0/scripts/imgtool/keys/ |
D | __init__.py | 58 except TypeError as e: 59 msg = str(e) 62 raise e
|
/mcuboot-3.4.0/scripts/imgtool/ |
D | image.py | 117 e = STRUCT_ENDIAN_DICT[self.endian] 124 buf = struct.pack(e + 'HH', kind, len(payload)) 126 buf = struct.pack(e + 'BBH', TLV_VALUES[kind], 0, len(payload)) 133 e = STRUCT_ENDIAN_DICT[self.endian] 134 header = struct.pack(e + 'HH', self.magic, len(self)) 421 e = STRUCT_ENDIAN_DICT[self.endian] 424 payload = struct.pack(e + 'I', self.security_counter) 433 e + 'B3x'+'BBHI', 555 e = STRUCT_ENDIAN_DICT[self.endian] 556 fmt = (e +
|
D | main.py | 171 X25519UsageError) as e: 172 raise click.UsageError(e) 215 except ValueError as e: 216 raise click.BadParameter("{}".format(e)) 256 except ValueError as e: 257 raise click.BadParameter("{}".format(e))
|
/mcuboot-3.4.0/scripts/ |
D | assemble.py | 50 except OSError as e: 51 if e.errno != errno.ENOENT:
|
/mcuboot-3.4.0/sim/src/ |
D | lib.rs | 130 .unwrap_or_else(|e| e.exit()); in main()
|
/mcuboot-3.4.0/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-3.4.0/ptest/src/ |
D | main.rs | 193 Some(e) => e, in from_yaml()
|
/mcuboot-3.4.0/sim/mcuboot-sys/src/ |
D | api.rs | 291 Err(e) => { in map_err() 292 warn!("{}", e); in map_err()
|
/mcuboot-3.4.0/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 | 171 size of the 2 partitions (e.g. if a device has a primary slot in main flash 174 The number of sectors must also be evenly divisable by this sector size, e.g. 176 needs adding to the .dts file for the board, e.g. for the nrf52dk_nrf52832 201 the cost of vastly reducing flash lifespan, e.g. for a 32KB firmware update
|
D | imgtool.md | 84 component (e.g. CoFM for coprocessor 87 -e, --endian [little|big] Select little or big endian
|
D | testplan-mynewt.md | 162 $ pyocd flash -e sector -a 0x80000 ${IMG_FILE} bin
|
/mcuboot-3.4.0/ext/fiat/src/ |
D | curve25519.c | 1233 uint8_t e[32]; in x25519_scalar_mult_generic() local 1234 memcpy(e, scalar, 32); in x25519_scalar_mult_generic() 1235 e[0] &= 248; in x25519_scalar_mult_generic() 1236 e[31] &= 127; in x25519_scalar_mult_generic() 1237 e[31] |= 64; in x25519_scalar_mult_generic() 1271 unsigned b = 1 & (e[pos / 8] >> (pos & 7)); in x25519_scalar_mult_generic()
|
/mcuboot-3.4.0/boot/espressif/port/esp32/ld/ |
D | bootloader.ld | 122 *(.gnu.linkonce.e.*)
|
/mcuboot-3.4.0/boot/espressif/port/esp32c3/ld/ |
D | bootloader.ld | 126 *(.gnu.linkonce.e.*)
|
/mcuboot-3.4.0/boot/espressif/port/esp32s2/ld/ |
D | bootloader.ld | 127 *(.gnu.linkonce.e.*)
|
/mcuboot-3.4.0/boot/espressif/port/esp32s3/ld/ |
D | bootloader.ld | 128 *(.gnu.linkonce.e.*)
|
/mcuboot-3.4.0/ |
D | CODE_OF_CONDUCT.md | 56 Examples of representing our community include using an official e-mail address,
|