Skip to main content

Sign and verify RPI PICO UF2 firmware binaries

picosign is a Python boot tool for signing and verifying Raspberry Pi Pico UF2 firmware binaries.

Developed in python code.

The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.

picosign python checker picosign package checker picosign interface checker picosign isp checker picosign srp checker GitHub issues open GitHub contributors

Table of Contents

🚀 Installation

Used next development environment

debian linux os

picosign python3 build

Currently there are four ways to install package

  • Install process based on using pip mechanism
  • Install process based on build mechanism
  • Install process based on setup.py mechanism
  • Install process based on docker mechanism
Install using pip

picosign is located at pypi.org.

You can install by using pip

# python3
pip3 install picosign
Install using build

Navigate to release page download and extract release archive.

To install picosign type the following

tar xvzf picosign-x.y.z.tar.gz
cd picosign-x.y.z/
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py 
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install ./dist/picosign-*-py3-none-any.whl
rm -f get-pip.py
Install using py setup

Navigate to release page download and extract release archive.

To install picosign locate and run setup.py with arguments

tar xvzf picosign-x.y.z.tar.gz
cd picosign-x.y.z
# python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info
Install using docker

You can use Dockerfile to create image/container.

📦 Dependencies

picosign requires next modules and libraries

📁 Tool structure

picosign is based on OOP and Hexagonal Architecture.

Tool structure

Click to expand framework structure
    picosign/
         ├── core/
            ├── __init__.py
            ├── model/
               ├── __init__.py
               └── signature_data.py
            └── service/
                ├── engine.py
                ├── __init__.py
                ├── iservice.py
                └── isubprocessor.py
         ├── engine.py
         ├── infrastructure/
            ├── cli/
               ├── engine.py
               ├── icli.py
               ├── __init__.py
               └── setup/
                   ├── bundle.py
                   ├── dep_validator.py
                   ├── dependencies.py
                   ├── factory.py
                   ├── __init__.py
                   ├── keys.py
                   ├── opt_validator.py
                   ├── options.py
                   ├── registry.py
                   └── validator.py
            ├── command/
               ├── command.py
               ├── icommand_definition.py
               ├── icommand_executor.py
               ├── __init__.py
               ├── read_command_definition.py
               ├── read_command_executor.py
               ├── sign_command_definition.py
               └── sign_command_executor.py
            ├── config/
               ├── picosign.cfg
               └── picosign.logo
            ├── __init__.py
            └── subprocessor.py
         ├── __init__.py
         ├── py.typed
         └── setup/
             ├── bundle.py
             ├── dep_validator.py
             ├── dependencies.py
             ├── factory.py
             ├── __init__.py
             ├── keys.py
             ├── opt_validator.py
             ├── options.py
             ├── registry.py
             └── validator.py

     10 directories, 45 files

✨ Features

  • Adds and reads textual signatures from 220-byte padding in the first 512-byte block of UF2 binaries.
  • Validates UF2 block boundaries and magic header constants (0x0A324655, 0x9E5D5157).
  • Provides a modular and extensible architecture based on OOP and SOLID principles.
  • Includes command line interface (CLI) support via a command/executor structure.
  • Robust validation of project bundles, dependencies, and options.
  • High code quality with full type checking and 100% unit test coverage.

📊 Code coverage

Click to expand code coverage
Name Stmts Miss Cover
picosign/__init__.py 9 0 100%
picosign/core/__init__.py 9 0 100%
picosign/core/model/__init__.py 9 0 100%
picosign/core/model/signature_data.py 15 0 100%
picosign/core/service/__init__.py 9 0 100%
picosign/core/service/engine.py 29 0 100%
picosign/core/service/iservice.py 14 0 100%
picosign/core/service/isubprocessor.py 14 0 100%
picosign/engine.py 57 0 100%
picosign/infrastructure/__init__.py 9 0 100%
picosign/infrastructure/cli/__init__.py 9 0 100%
picosign/infrastructure/cli/engine.py 43 0 100%
picosign/infrastructure/cli/icli.py 15 0 100%
picosign/infrastructure/cli/setup/__init__.py 9 0 100%
picosign/infrastructure/cli/setup/bundle.py 22 0 100%
picosign/infrastructure/cli/setup/dep_validator.py 36 0 100%
picosign/infrastructure/cli/setup/dependencies.py 18 0 100%
picosign/infrastructure/cli/setup/factory.py 40 0 100%
picosign/infrastructure/cli/setup/keys.py 26 0 100%
picosign/infrastructure/cli/setup/opt_validator.py 34 0 100%
picosign/infrastructure/cli/setup/options.py 15 0 100%
picosign/infrastructure/cli/setup/registry.py 31 0 100%
picosign/infrastructure/cli/setup/validator.py 43 0 100%
picosign/infrastructure/command/__init__.py 9 0 100%
picosign/infrastructure/command/command.py 16 0 100%
picosign/infrastructure/command/icommand_definition.py 14 0 100%
picosign/infrastructure/command/icommand_executor.py 14 0 100%
picosign/infrastructure/command/read_command_definition.py 26 0 100%
picosign/infrastructure/command/read_command_executor.py 29 0 100%
picosign/infrastructure/command/sign_command_definition.py 26 0 100%
picosign/infrastructure/command/sign_command_executor.py 29 0 100%
picosign/infrastructure/subprocessor.py 101 0 100%
picosign/setup/__init__.py 9 0 100%
picosign/setup/bundle.py 23 0 100%
picosign/setup/dep_validator.py 36 0 100%
picosign/setup/dependencies.py 19 0 100%
picosign/setup/factory.py 43 0 100%
picosign/setup/keys.py 27 0 100%
picosign/setup/opt_validator.py 34 0 100%
picosign/setup/options.py 12 0 100%
picosign/setup/registry.py 32 0 100%
picosign/setup/validator.py 48 0 100%
Total 1062 0 100%

🛠 Usage

Install package

pip3 install picosign

Prepare main entry point by downloading main.py or create your own.

wget -O main.py https://raw.githubusercontent.com/vroncevic/picosign/main/main.py

Embed signature into a UF2 firmware binary:

python3 main.py sign --file firmware.uf2 --signature "AUTHOR: Vladimir Roncevic | VERSION: 1.0.0"

Read signature from a UF2 firmware binary:

python3 main.py read --file firmware.uf2

📚 Docs

Documentation Status

More documentation and info at

👥 Contributing

Contributing to picosign

📄 Copyright and licence

License: GPL v3 License

Copyright (C) 2026 by vroncevic.github.io/picosign

picosign is free software; you can redistribute it and/or modify it under the same terms as Python itself, either Python version 3.x or, at your option, any later version of Python 3 you may have available.

Lets help and support PSF.

Python Software Foundation

Donate

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

picosign-1.0.0.tar.gz (35.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

picosign-1.0.0-py3-none-any.whl (71.9 kB view details)

Uploaded Python 3

File details

Details for the file picosign-1.0.0.tar.gz.

File metadata

  • Download URL: picosign-1.0.0.tar.gz
  • Upload date:
  • Size: 35.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.0 CPython/3.12.3

File hashes

Hashes for picosign-1.0.0.tar.gz
Algorithm Hash digest
SHA256 4f2724409d8f4d0d55e75ef6beaca0500e478ebd6935e5480e33fc920459954c
MD5 196362f1d4fc1394bf3202e8281760d4
BLAKE2b-256 62dbe99e0905b2e6e220d881a6c24e119d545b5021fb95abd6a09c3a2b787862

See more details on using hashes here.

File details

Details for the file picosign-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: picosign-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.0 CPython/3.12.3

File hashes

Hashes for picosign-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5b3b5bd6d653380e1b41dc08b860825bccaf2daff8a6d694d8cd54448dfbbacd
MD5 55ab9012e0e41a85a9cfba8b0d4b1a83
BLAKE2b-256 b1045b4e1f8b90935c3f3989b06801fd183cfb4cebf25eb935af0855b1748dcc

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page