skillfed

securesystemslib

A library that provides cryptographic and general-purpose routines for Secure Systems Lab projects at NYU

securesystemslib v1.4.0 1.1M downloads/30d#4,415 on PyPI56
Permissive license MIT Active released

What it is and what it does

Securesystemslib is a cryptography interface library that abstracts digital signing and verification operations. It sits between your application and various cryptographic backends—pure-Python ed25519, the cryptography library for RSA and ECDSA, and hardware security modules like Yubikeys—allowing you to work with a unified API regardless of which signing system you choose. The library was built specifically for TUF (The Update Framework) and in-toto projects, so its key and signature containers are compatible with those projects' metadata formats.

The default installation provides ed25519 signature verification only. To enable signature creation or other schemes (RSA, ECDSA), you install with extras like `[crypto]` or `[hsm]`. It has no runtime dependencies in its base form, making it lightweight to add to a project. The library is actively maintained, supports modern Python versions (3.10 through 3.14), and carries an MIT license.

Use it for:

  • Verify software package authenticity in supply-chain security tools by checking TUF or in-toto metadata signatures.
  • Sign and verify release artifacts or deployment manifests in CI/CD pipelines using a unified cryptographic interface.
  • Integrate hardware security module keys (e.g., Yubikeys) into applications without writing HSM-specific code.
  • Build secure update frameworks that need to support multiple signature schemes without tight coupling to any one backend.
  • Migrate legacy key formats to a standard format compatible with modern signing workflows.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Securesystemslib provides a cryptography interface for creating and verifying digital signatures, with support for ed25519, RSA, ECDSA, and hardware security modules, designed for TUF and in-toto metadata formats.

Yes. Securesystemslib is worth installing if you need to sign or verify digital signatures in a supply-chain or software-integrity context. It is actively maintained, has no base dependencies, carries a permissive MIT license, and is purpose-built for TUF and in-toto workflows. Install with extras (`[crypto]` or `[hsm]`) only if you need signature creation or hardware key support.

Install

securesystemslib on PyPI

pip

pip install securesystemslib

uv

uv add securesystemslib

poetry

poetry add securesystemslib

Installing securesystemslib

Before you install

Low install friction with no runtime dependencies; actively maintained with a release 79 days ago and recent commits. Supports Python 3.10 through 3.14.

License in practice

MIT license permits free use, modification, and distribution with minimal restrictions, making it suitable for both open-source and proprietary projects.

Quickstart

pip install securesystemslib

from securesystemslib.signer import SSlibSigner

# Basic usage requires importing from the signer module
# For RSA, ECDSA, or HSM support, install with extras:
# pip install securesystemslib[crypto]
# pip install securesystemslib[hsm]

Requires Python 3.10 or later. Default installation supports ed25519 verification only; other schemes require optional dependencies via extras.

Verify before relying

  • Whether the package's cryptographic implementations have undergone independent security audits.
  • Performance characteristics when handling large numbers of signatures or keys.
  • Specific cloud-based key management systems supported beyond the general mention.

Package facts

License MIT (permissive)
Python support supports the current Python release (~=3.10)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 79 days since the last release
Last repo commit
First released
Downloads 1,065,950/month — #4,415 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: securesystemslib-1.4.0-py3-none-any.whl

Keywords: cryptography, ecdsa, ed25519, keys, rsa, signatures

Development Status :: 5 - Production/StableIntended Audience :: DevelopersNatural Language :: EnglishOperating System :: MacOS :: MacOS XOperating System :: Microsoft :: WindowsOperating System :: POSIXOperating System :: POSIX :: LinuxProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: Implementation :: CPythonTopic :: SecurityTopic :: Software Development

Tags

digital signature verificationcryptographic signing libraryed25519 rsa ecdsa signaturestuf in-toto metadatahardware security module keyskey management cryptographysignature verification python
supply-chain-securitytuf-in-totohardware-keys

More Software Development packages