/mcuboot-3.4.0/ci/ |
D | compare_versions.py | 15 from packaging.version import parse, InvalidVersion 20 from packaging.version import LegacyVersion 44 for version in [args.old, args.new]: 46 versions.append(parse(version)) 48 print("Invalid version parsed: {}".format(version)) 52 for version in [old, new]: 53 if isinstance(version, LegacyVersion): 54 print("Invalid version parsed: {}".format(version))
|
/mcuboot-3.4.0/ptest/ |
D | Cargo.lock | 3 version = 3 7 version = "0.17.0" 16 version = "1.0.2" 22 version = "0.7.18" 31 version = "0.2.14" 42 version = "1.1.0" 48 version = "0.3.65" 63 version = "1.0.73" 69 version = "1.0.0" 75 version = "0.4.19" [all …]
|
D | Cargo.toml | 3 version = "0.1.0"
|
/mcuboot-3.4.0/ |
D | Cargo.lock | 3 version = 3 7 version = "0.7.5" 20 version = "0.7.18" 29 version = "0.2.14" 40 version = "0.13.0" 46 version = "0.1.0" 69 version = "3.12.0" 75 version = "1.4.3" 81 version = "1.0.73" 87 version = "1.0.0" [all …]
|
D | CODE_OF_CONDUCT.md | 119 version 2.0, available at 120 [https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. 130 [v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html
|
/mcuboot-3.4.0/docs/ |
D | release.md | 7 MCUboot uses [semantic versioning][semver], where version numbers 11 1. MAJOR version when there are incompatible API changes. 12 2. MINOR version when new functionalities were added in a 14 3. PATCH version when there are backward-compatible bug fixes. 18 In the documentation, we mark an MCUBoot development version using the 47 It requires its version to be updated by editing 48 `scripts/imgtool/__init__.py` and modifying the exported version: 53 This version should match the current release number of MCUboot. The 65 new release version, including updates to the pseudo keys 70 There is a version file used by Zephyr builds to indicate the version [all …]
|
D | Gemfile | 3 # Hello! This is where you manage which Jekyll version is used to run. 4 # When you want to use a different version, change it below, save the
|
D | readme-riot.md | 9 In this first version, a prebuilt Mynewt binary is downloaded at 15 In the next version, it is planned to compile MCUboot using RIOT, 30 version information, and trailer type-length-value records (TLVs) with
|
D | imgtool.md | 65 -v, --version TEXT [required] 68 it from the image version. 99 The main arguments given are the key file generated above, a version 125 which the current image depends on. The `image_version` is the minimum version 127 image depends on Image 1 which version has to be at least 1.2.3+0.
|
D | readme-espressif.md | 138 Downgrade prevention (avoid updating of images to an older version) can be enabled using the follow… 144 MCUboot will then verify and compare the new image version number with the current one before perfo… 150 …ed to the image when signing with `imgtool` (`-s` parameter), apart from version number. This allo… 271 espsecure.py generate_signing_key --version 2 <BOOTLOADER_SIGNING_KEY.pem> 276 espsecure.py sign_data --version 2 --keyfile <BOOTLOADER_SIGNING_KEY.pem> -o <BOOTLOADER_BIN_OUT> <… 549 ### [Image version dependency](#image-version-dependency) 551 …version dependency check between the images when updating them. As `imgtool.py` allows a version a… 556 - `<VERSION>` defines the version of the image being signed. 557 - `"(<IMAGE_INDEX>, <VERSION_DEPENDENCY>)"` defines the minimum version and from which image is nee… 565 Supposing that the image 0 is being signed, its version is 1.0.0 and it depends on image 1 with ver…
|
/mcuboot-3.4.0/scripts/imgtool/ |
D | image.py | 23 from . import version as versmod 140 def __init__(self, version=None, header_size=IMAGE_HEADER_SIZE, argument 150 self.version = version or versmod.decode_version("0") 188 self.security_counter = ((self.version.major << 24) 189 + (self.version.minor << 16) 190 + self.version.revision) 199 self.version, 362 image_version = (str(self.version.major) + '.' 363 + str(self.version.minor) + '.' 364 + str(self.version.revision)) [all …]
|
D | main.py | 27 from imgtool.version import decode_version 180 ret, version, digest = image.Image.verify(imgfile, key) 183 print("Image version: {}.{}.{}+{}".format(*version)) 368 def sign(key, public_key_format, align, version, pad_sig, header_size, argument 379 img = image.Image(version=decode_version(version), header_size=header_size, 469 def version(): function 484 imgtool.add_command(version)
|
/mcuboot-3.4.0/docs/release-notes.d/ |
D | zcbor-update.md | 1 - zcbor library files have been updated to version 0.7.0
|
/mcuboot-3.4.0/sim/ |
D | Cargo.toml | 3 version = "0.1.0" 37 rand = { version = "0.8", features = ["small_rng"] } 49 aes = { version = "0.7.4", features = ["ctr"] }
|
/mcuboot-3.4.0/sim/simflash/ |
D | Cargo.toml | 3 version = "0.1.0"
|
/mcuboot-3.4.0/scripts/ |
D | setup.py | 8 version=imgtool_version,
|
/mcuboot-3.4.0/boot/bootutil/src/ |
D | encrypted.c | 180 int version; in parse_ec256_enckey() local 193 version = 0; in parse_ec256_enckey() 194 if (mbedtls_asn1_get_int(p, end, &version) || version != 0) { in parse_ec256_enckey() 222 version = 0; in parse_ec256_enckey() 223 if (mbedtls_asn1_get_int(p, end, &version) || version != 1) { in parse_ec256_enckey() 257 int version; in parse_x25519_enckey() local 270 version = 0; in parse_x25519_enckey() 271 if (mbedtls_asn1_get_int(p, end, &version) || version != 0) { in parse_x25519_enckey()
|
/mcuboot-3.4.0/boot/zcbor/ |
D | add_zcbor_copy_version.sh | 14 ' "$2" "$(zcbor --version)"; cat $1;)" > $1
|
/mcuboot-3.4.0/ext/fiat/ |
D | METADATA | 9 version: "4441785fb44b88bb6943ddbf639d872c8c903281"
|
/mcuboot-3.4.0/sim/src/ |
D | tlv.rs | 88 fn add_dependency(&mut self, id: u8, version: &ImageVersion); in add_dependency() 127 version: ImageVersion, field 328 fn add_dependency(&mut self, id: u8, version: &ImageVersion) { in add_dependency() 331 version: version.clone(), in add_dependency() 415 protected_tlv.push(dep.version.major); in make_tlv() 416 protected_tlv.push(dep.version.minor); in make_tlv() 417 protected_tlv.write_u16::<LittleEndian>(dep.version.revision).unwrap(); in make_tlv() 418 protected_tlv.write_u32::<LittleEndian>(dep.version.build_num).unwrap(); in make_tlv()
|
/mcuboot-3.4.0/boot/mynewt/mcuboot_config/include/mcuboot_config/ |
D | mcuboot_config.h | 85 #if MYNEWT_VAL_CHOICE(BOOTUTIL_DOWNGRADE_PREVENTION, version)
|
/mcuboot-3.4.0/sim/mcuboot-sys/ |
D | Cargo.toml | 3 version = "0.1.0" 80 # Check (in software) against version downgrades.
|
/mcuboot-3.4.0/samples/zephyr/ |
D | Makefile | 136 --version 1.2 \ 161 --version 1.2 \
|
/mcuboot-3.4.0/boot/zephyr/ |
D | Kconfig | 240 If y, mcuboot selects the newest valid image based on the image version 249 If y, mcuboot selects the newest valid image based on the image version 526 bool "Use build number while comparing image version" 530 By default, the image version comparison relies only on version major, 542 Prevent downgrades by enforcing incrementing version numbers. 543 When this option is set, any upgrade must have greater major version 544 or greater minor version with equal major version. This mechanism 545 only protects against some attacks against version downgrades (for 546 example, a JTAG could be used to write an older version). 549 bool "Use image security counter instead of version number" [all …]
|
/mcuboot-3.4.0/boot/espressif/port/esp32/ld/ |
D | bootloader.ld | 65 *(.gnu.version) 163 *(.gnu.version)
|