/mcuboot-2.7.6/ext/tinycrypt/tests/ |
D | test_sha256.c | 63 const char *m = "abc"; in test_1() local 68 tc_sha256_update(&s, (const uint8_t *) m, strlen(m)); in test_1() 88 const char *m = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"; in test_2() local 93 tc_sha256_update(&s, (const uint8_t *) m, strlen(m)); in test_2() 111 const uint8_t m[1] = { 0xbd }; in test_3() local 116 tc_sha256_update(&s, m, sizeof(m)); in test_3() 134 const uint8_t m[4] = { 0xc9, 0x8c, 0x8e, 0x55 }; in test_4() local 139 tc_sha256_update(&s, m, sizeof(m)); in test_4() 158 uint8_t m[55]; in test_5() local 162 (void)memset(m, 0x00, sizeof(m)); in test_5() [all …]
|
/mcuboot-2.7.6/scripts/imgtool/ |
D | version.py | 37 m = version_re.match(text) 38 if m: 40 int(m.group(1)) if m.group(1) else 0, 41 int(m.group(3)) if m.group(3) else 0, 42 int(m.group(5)) if m.group(5) else 0, 43 int(m.group(7)) if m.group(7) else 0)
|
D | image.py | 526 m = DEFAULT_MAX_SECTORS if max_sectors is None else max_sectors 527 trailer = m * 3 * write_size # status area
|
/mcuboot-2.7.6/ext/tinycrypt/lib/source/ |
D | cbc_mode.c | 43 unsigned int n, m; in tc_cbc_mode_encrypt() local 63 for (n = m = 0; n < inlen; ++n) { in tc_cbc_mode_encrypt() 64 buffer[m++] ^= *in++; in tc_cbc_mode_encrypt() 65 if (m == TC_AES_BLOCK_SIZE) { in tc_cbc_mode_encrypt() 70 m = 0; in tc_cbc_mode_encrypt() 84 unsigned int n, m; in tc_cbc_mode_decrypt() local 104 for (n = m = 0; n < inlen; ++n) { in tc_cbc_mode_decrypt() 108 m = 0; in tc_cbc_mode_decrypt() 110 *out++ = buffer[m++] ^ *p++; in tc_cbc_mode_decrypt()
|
/mcuboot-2.7.6/boot/bootutil/include/bootutil/crypto/ |
D | aes_ctr.h | 66 …ctr_encrypt(bootutil_aes_ctr_context *ctx, uint8_t *counter, const uint8_t *m, uint32_t mlen, size… in bootutil_aes_ctr_encrypt() argument 69 return mbedtls_aes_crypt_ctr(ctx, mlen, &blk_off, counter, stream_block, m, c); in bootutil_aes_ctr_encrypt() 72 …es_ctr_context *ctx, uint8_t *counter, const uint8_t *c, uint32_t clen, size_t blk_off, uint8_t *m) in bootutil_aes_ctr_decrypt() argument 75 return mbedtls_aes_crypt_ctr(ctx, clen, &blk_off, counter, stream_block, c, m); in bootutil_aes_ctr_decrypt() 111 …ctr_encrypt(bootutil_aes_ctr_context *ctx, uint8_t *counter, const uint8_t *m, uint32_t mlen, uint… in bootutil_aes_ctr_encrypt() argument 113 return _bootutil_aes_ctr_crypt(ctx, counter, m, mlen, blk_off, c); in bootutil_aes_ctr_encrypt() 116 …_ctr_context *ctx, uint8_t *counter, const uint8_t *c, uint32_t clen, uint32_t blk_off, uint8_t *m) in bootutil_aes_ctr_decrypt() argument 118 return _bootutil_aes_ctr_crypt(ctx, counter, c, clen, blk_off, m); in bootutil_aes_ctr_decrypt()
|
/mcuboot-2.7.6/ext/tinycrypt/ |
D | AUTHORS | 5 Constanza Heath <constanza.m.heath@intel.com> 9 Constanza Heath <constanza.m.heath@intel.com>
|
/mcuboot-2.7.6/ext/mbedtls-asn1/include/mbedtls/ |
D | ecp.h | 746 const mbedtls_mpi *m, const mbedtls_ecp_point *P, 775 const mbedtls_mpi *m, const mbedtls_ecp_point *P, 802 const mbedtls_mpi *m, const mbedtls_ecp_point *P, 834 const mbedtls_mpi *m, const mbedtls_ecp_point *P,
|
/mcuboot-2.7.6/ptest/src/ |
D | main.rs | 183 let m = match lookup_matrix(y) { in from_yaml() localVariable 184 Some (m) => m, in from_yaml() 187 for elt in m { in from_yaml()
|
/mcuboot-2.7.6/ci/fih_test_docker/docker-build/ |
D | Dockerfile | 33 python3 -m pip install \
|
/mcuboot-2.7.6/boot/cypress/platforms/PSOC_062_2M/CM0P/GCC_ARM/ |
D | startup_psoc6_02_cm0plus.S | 39 .arch armv6-m
|
/mcuboot-2.7.6/boot/cypress/platforms/PSOC_062_2M/CM4/GCC_ARM/ |
D | startup_psoc6_02_cm4.S | 39 .arch armv7-m
|