Home
last modified time | relevance | path

Searched refs:imgtool (Results 1 – 25 of 31) sorted by relevance

12

/mcuboot-2.7.6/scripts/
Dimgtool.nix3 # Nix environment for imgtool
7 # $ nix-env --file imgtool.nix --install env-imgtool
11 # $ load-env-imgtool
28 name = "imgtool";
Dimgtool.py19 from imgtool import main
22 main.imgtool()
Dsetup.py4 from imgtool import imgtool_version
/mcuboot-2.7.6/
DREADME.md3 [![Package on PyPI](https://img.shields.io/pypi/v/imgtool.svg)][pypi]
7 [![Publishing Status (imgtool)](https://github.com/mcu-tools/mcuboot/workflows/imgtool/badge.svg)][
11 [pypi]: https://pypi.org/project/imgtool/
15 [imgtool]: https://github.com/mcu-tools/mcuboot/actions?query=workflow:imgtool
65 - [imgtool](scripts/imgtool.py): A tool to securely sign firmware images for booting by mcuboot.
/mcuboot-2.7.6/ci/
Dimgtool_run.sh33 last_release=$(pip show imgtool | grep "Version: " | cut -d" " -f2)
34 repo_version=$(grep "imgtool_version = " imgtool/__init__.py | sed 's/^.* = "\(.*\)"/\1/g')
Dimgtool_install.sh23 pip install --pre imgtool
/mcuboot-2.7.6/scripts/imgtool/
Dmain.py23 import imgtool.keys as keys
25 from imgtool import image, imgtool_version
26 from imgtool.version import decode_version
382 def imgtool(): function
386 imgtool.add_command(keygen)
387 imgtool.add_command(getpub)
388 imgtool.add_command(getpriv)
389 imgtool.add_command(verify)
390 imgtool.add_command(sign)
391 imgtool.add_command(version)
[all …]
/mcuboot-2.7.6/docs/
Drelease-notes.md12 There are bug fixes, and associated imgtool updates as well.
36 - imgtool: added custom TLV support.
37 - imgtool: added possibility to set confirm flag for hex files as well.
38 - imgtool: Print image digest during verify.
52 later boot stages. There are bug fixes, and associated imgtool
91 testing coverage and some imgtool updates.
101 - imgtool was updated to correctly detect trailer overruns by image.
104 - imgtool can dump private keys in C format (getpriv command), which
133 - Update imgtool.py to support the new features
139 - Add a `-x` (or `--hex_addr`) flag to imgtool to set the base address
[all …]
Dindex.md28 - [imgtool](imgtool.md) - image signing and key management
43 of date. You should use `imgtool.py` instead of these documents.
69 - [imgtool](https://github.com/mcu-tools/mcuboot/tree/main/scripts/imgtool.py): A tool to securely …
Dreadme-zephyr.md108 Images can be signed with the `scripts/imgtool.py` script. It is best
131 `scripts/imgtool.py` is able to generate key pairs in all of the
132 supported formats. See [the docs](imgtool.md) for more details on
137 Generating a keypair with imgtool is a matter of running the keygen
141 $ ./scripts/imgtool.py keygen -k mykey.pem -t rsa-2048
145 [the docs](imgtool.md) for more details on the possible key types.
152 extracted using imgtool:
155 $ ./scripts/imgtool.py getpub -k mykey.pem
Drelease.md38 ## imgtool release
40 imgtool is released through pypi.org (The Python package index) and
42 `scripts/imgtool/__init__.py` and modifying the exported version:
100 for bug fixes or required minor updates (eg, new `imgtool` features).
Dimgtool.md3 The Python program `scripts/imgtool.py` can be used to perform the
18 ./scripts/imgtool.py keygen -k filename.pem -t rsa-2048
42 ./scripts/imgtool.py getpub -k filename.pem
54 Usage: imgtool.py sign [OPTIONS] INFILE OUTFILE
108 be passed and the `--header-size` will be added by imgtool. If `--pad-header`
Decdsa.md36 `imgtool.py`. Without this, the images will be padded with the
52 relevant channels, the arguments to `imgtool.py` will change:
59 default, but not specifying a specific version of imgtool.
Dreadme-riot.md31 hash and signing information. This is done through the imgtool.py
/mcuboot-2.7.6/scripts/imgtool/keys/
Drsa_test.py21 from imgtool.keys import load, RSA, RSAUsageError
22 from imgtool.keys.rsa import RSA_KEY_SIZES
Decdsa_test.py19 from imgtool.keys import load, ECDSA256P1, ECDSAUsageError
Ded25519_test.py19 from imgtool.keys import load, Ed25519, Ed25519UsageError
/mcuboot-2.7.6/boot/cypress/keys/
Dcypress-test-ec-p256.pub1 /* Autogenerated by imgtool.py, do not edit. */
/mcuboot-2.7.6/ext/nrf/
DREADME.md18 Build a hello world example in zephyr and sign it with imgtool.py with the `root-ec-p256.pem` and f…
/mcuboot-2.7.6/boot/cypress/
DMakefile203 ../../scripts/imgtool.py keygen -k keys/$(SIGN_KEY_FILE).pem -t ecdsa-p256
204 ../../scripts/imgtool.py getpub -k keys/$(SIGN_KEY_FILE).pem > keys/$(SIGN_KEY_FILE).pub
/mcuboot-2.7.6/ci/fih_test_docker/docker-build/
DDockerfile34 imgtool==1.7.0 \
/mcuboot-2.7.6/boot/cypress/BlinkyApp/
DBlinkyApp.mk101 IMGTOOL_PATH ?= ../../scripts/imgtool.py
/mcuboot-2.7.6/sim/src/
Drsa_pub_key-rs.txt1 /* Autogenerated by imgtool.py, do not edit. */
/mcuboot-2.7.6/samples/zephyr/
DMakefile76 IMGTOOL = ../../scripts/imgtool.py
/mcuboot-2.7.6/ci/fih_test_docker/
Ddamage_image.py20 from imgtool.image import (IMAGE_HEADER_SIZE, IMAGE_MAGIC,

12