PHP-TUF is in a pre-release state and is not considered a complete or secure version of the TUF framework. It should currently only be used for testing, development and feedback.
Do not use in production for secure target downloads!!
PHP-TUF is a PHP implementation of The Update Framework (TUF) to provide signing and verification for secure PHP application updates. Read the TUF specification for more information on how TUF is intended to work and the security it provides.
PHP-TUF project development is primarily focused on supporting secure automated updates for PHP CMSes, although it should also work for any PHP application or Composer project. Contributing projects:
The PHP-TUF client is designed to provide TUF verification to PHP applications for target signatures.
- Minimum required PHP version: 8.0
- Requires
ext-json
- The
paragonie/sodium_compat
dependency provides a polyfill for the Sodium cryptography library; however, installingext-sodium
is recommended for better performance and security.
We recommend using the default CLI implementation (a Python application) to generate keys and signatures as a part of your project's release creation process. This will require:
- Python 3.9+
- PIP 19+
@todo More detailed instructions. php-tuf#170
-
Install OS-level dependencies:
-
On Fedora 33:
sudo dnf install pipenv python3-devel libffi-devel
-
On Ubuntu 20.10:
sudo apt-get install pipenv python3-dev libffi-dev
-
-
Configure the virtual environment:
pipenv install
The code generally follows PSR-2 with some additional formatting rules for code documentation and array formatting. Run PHPCS to check for code style compliance:
composer phpcs
Run the following command:
composer fixtures
Fixtures should appear in fixtures/
.
- Ensure you have all required dependencies by running
composer install
. - Run
composer test
at the project's root.
-
From
fixtures/*/tufrepo
:python3 -m http.server 8001
-
From
fixtures/*/tufclient
:mkdir -p tuftargets curl http://localhost:8001/targets/testtarget.txt > tuftargets/testtarget.txt client.py --repo http://localhost:8001 testtarget.txt # A 404 is expected for N.root.json unless a key has been rotated.
To provide a lightweight, reliable, and secure client, external dependencies are carefully limited. Any proposed dependency additions (and those dependencies' dependencies) should undergo the Drupal core dependency evaluation process.
For evaluations and policies of current dependencies, see the PHP-TUF dependency information.