Home
last modified time | relevance | path

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

12

/mcuboot-latest/scripts/tests/
Dtest_commands.py18 from imgtool.main import imgtool
19 from imgtool import imgtool_version
38 for cmd in imgtool.commands:
47 result_short = runner.invoke(imgtool, ["-h"])
50 result_long = runner.invoke(imgtool, ["--help"])
55 result_empty = runner.invoke(imgtool)
64 result = runner.invoke(imgtool, ["version"])
68 result_help = runner.invoke(imgtool, ["version", "-h"])
77 result = runner.invoke(imgtool, ["unknown"])
86 result_short = runner.invoke(imgtool, [command, "-h"])
[all …]
Dtest_keys.py19 from imgtool import main as imgtool_main
20 from imgtool.main import imgtool
62 imgtool, ["keygen", "--key", str(gen_key), "--type", key_type]
75 imgtool, ["keygen", "--key", str(gen_key2), "--type", key_type]
111 imgtool,
135 imgtool,
164 imgtool,
195 imgtool,
208 imgtool,
232 imgtool,
[all …]
Dtest_compression.py20 from imgtool.image import Image
21 from imgtool.main import (
27 imgtool,
73 imgtool,
/mcuboot-latest/docs/release-notes.d/
Dimgtool_sanity_test.md1 - imgtool: added initial sanity tests for imgtool commands,
2 - imgtool: added and enabled unittests in GitGub workflow,
/mcuboot-latest/scripts/
Dimgtool.nix3 # Nix environment for imgtool
7 # $ nix-env --file imgtool.nix --install env-imgtool
11 # $ load-env-imgtool
29 name = "imgtool";
Dimgtool.py19 from imgtool import main
22 main.imgtool()
Dsetup.py5 from imgtool import imgtool_version
/mcuboot-latest/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
Despressif_install.sh8 pip install imgtool
/mcuboot-latest/zephyr/
Drequirements.txt2 imgtool>=2.1.0
/mcuboot-latest/
DREADME.md3 [![Package on PyPI](https://img.shields.io/pypi/v/imgtool.svg)][pypi]
8 [![Publishing Status (imgtool)](https://github.com/mcu-tools/mcuboot/workflows/imgtool/badge.svg)][
12 [pypi]: https://pypi.org/project/imgtool/
17 [imgtool]: https://github.com/mcu-tools/mcuboot/actions?query=workflow:imgtool
74 - [imgtool](https://github.com/mcu-tools/mcuboot/tree/main/scripts/imgtool.py) - A tool to securely…
/mcuboot-latest/scripts/imgtool/
Dmain.py23 import imgtool.keys as keys
30 from imgtool import image, imgtool_version
31 from imgtool.version import decode_version
32 from imgtool.dumpinfo import dump_imginfo
611 def imgtool(): function
615 imgtool.add_command(keygen)
616 imgtool.add_command(getpub)
617 imgtool.add_command(getpubhash)
618 imgtool.add_command(getpriv)
619 imgtool.add_command(verify)
[all …]
/mcuboot-latest/docs/
Dindex.md39 - [imgtool](imgtool.md) - image signing and key management
60 outdated. Follow the instructions in [imgtool](imgtool.md) instead.
80 - [imgtool](https://github.com/mcu-tools/mcuboot/tree/main/scripts/imgtool.py) - A tool to securely…
Drelease-notes.md87 - imgtool: add P384 support along with SHA384.
92 - imgtool: add 'dumpinfo' command for signed image parsing.
93 - imgtool: add 'getpubhash' command to dump the sha256 hash of the public key
94 - imgtool's getpub can print the output to a file
95 - imgtool can dump the raw versions of the public keys
136 - Improve imgtool, including adding 3rd party signing support.
178 imgtool
182 - imgtool: make `--max-align` default reasonable in most cases.
231 There are bug fixes, and associated imgtool updates as well.
255 - imgtool: added custom TLV support.
[all …]
Decdsa.md32 `imgtool.py`.
50 relevant channels, the arguments to `imgtool.py` will change:
57 behavior, but will not specify a specific version of imgtool.
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 sign [OPTIONS] INFILE OUTFILE
158 be passed and the `--header-size` will be added by imgtool. If `--pad-header`
/mcuboot-latest/boot/mbed/
Dmcuboot_imgtool.cmake4 check_python_package(imgtool.main MCUBOOT_IMGTOOL_FOUND)
8 # Find or install imgtool
13 message(STATUS "mcuboot: Installing imgtool into Mbed's Python virtualenv")
19 …message(FATAL_ERROR "The mcuboot imgtool python package needs to be installed (from mcuboot/script…
93 ${Python3_EXECUTABLE} -m imgtool.main
99 …--pad-header # this tells imgtool to insert the entire header, including any necessary padding byt…
189 ${Python3_EXECUTABLE} -m imgtool.main
209 ${Python3_EXECUTABLE} -m imgtool.main
DCMakeLists.txt4 # Pull in functions for working with imgtool
/mcuboot-latest/boot/cypress/keys/
Dcypress-test-ec-p256.pub1 /* Autogenerated by imgtool.py, do not edit. */
/mcuboot-latest/scripts/imgtool/keys/
Drsa_test.py21 from imgtool.keys import load, RSA, RSAUsageError
22 from imgtool.keys.rsa import RSA_KEY_SIZES
/mcuboot-latest/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-latest/boot/espressif/
DCMakeLists.txt146 # Find imgtool.
147 # Go with an explicitly installed imgtool first, falling
148 # back to mcuboot/scripts/imgtool.py.
150 NAMES imgtool imgtool.py
153 set(imgtool_path "${MCUBOOT_ROOT_DIR}/scripts/imgtool.py")
/mcuboot-latest/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-latest/ci/fih_test_docker/docker-build/
DDockerfile35 imgtool>=1.9.0 \

12