Searched refs:imgtool (Results 1 – 25 of 42) sorted by relevance
12
/mcuboot-latest/scripts/tests/ |
D | test_commands.py | 18 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 …]
|
D | test_keys.py | 19 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 …]
|
D | test_compression.py | 20 from imgtool.image import Image 21 from imgtool.main import ( 27 imgtool, 73 imgtool,
|
/mcuboot-latest/docs/release-notes.d/ |
D | imgtool_sanity_test.md | 1 - imgtool: added initial sanity tests for imgtool commands, 2 - imgtool: added and enabled unittests in GitGub workflow,
|
/mcuboot-latest/scripts/ |
D | imgtool.nix | 3 # Nix environment for imgtool 7 # $ nix-env --file imgtool.nix --install env-imgtool 11 # $ load-env-imgtool 29 name = "imgtool";
|
D | imgtool.py | 19 from imgtool import main 22 main.imgtool()
|
D | setup.py | 5 from imgtool import imgtool_version
|
/mcuboot-latest/ci/ |
D | imgtool_run.sh | 33 last_release=$(pip show imgtool | grep "Version: " | cut -d" " -f2) 34 repo_version=$(grep "imgtool_version = " imgtool/__init__.py | sed 's/^.* = "\(.*\)"/\1/g')
|
D | imgtool_install.sh | 23 pip install --pre imgtool
|
D | espressif_install.sh | 8 pip install imgtool
|
/mcuboot-latest/zephyr/ |
D | requirements.txt | 2 imgtool>=2.1.0
|
/mcuboot-latest/ |
D | README.md | 3 [][pypi] 8 [][… 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/ |
D | main.py | 23 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/ |
D | index.md | 39 - [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…
|
D | release-notes.md | 87 - 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 …]
|
D | ecdsa.md | 32 `imgtool.py`. 50 relevant channels, the arguments to `imgtool.py` will change: 57 behavior, but will not specify a specific version of imgtool.
|
D | imgtool.md | 3 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/ |
D | mcuboot_imgtool.cmake | 4 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
|
D | CMakeLists.txt | 4 # Pull in functions for working with imgtool
|
/mcuboot-latest/boot/cypress/keys/ |
D | cypress-test-ec-p256.pub | 1 /* Autogenerated by imgtool.py, do not edit. */
|
/mcuboot-latest/scripts/imgtool/keys/ |
D | rsa_test.py | 21 from imgtool.keys import load, RSA, RSAUsageError 22 from imgtool.keys.rsa import RSA_KEY_SIZES
|
/mcuboot-latest/ext/nrf/ |
D | README.md | 18 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/ |
D | CMakeLists.txt | 146 # 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/ |
D | Makefile | 203 ../../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/ |
D | Dockerfile | 35 imgtool>=1.9.0 \
|
12