Skip to main content

A Python implementation of the Minisign signature system.

Installation

With uv:

uv add py-minisign

With pip:

python3 -m pip install py-minisign

Verify a signature

import minisign

public_key = minisign.PublicKey.from_base64(
    "RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3"
)
signature = minisign.Signature.from_bytes(
    b"untrusted comment: signature from minisign secret key\n"
    b"RWQf6LRCGA9i59SLOFxz6NxvASXDJeRtuZykwQepbDEGt87ig1BNpWaVWuNrm73YiIiJbq71Wi+dP9eKL8OC351vwIasSSbXxwA=\n"
    b"trusted comment: timestamp:1555779966\tfile:test\n"
    b"QtKMXWyYcwdpZAlPF7tE2ENJkRd1ujvKjlj1m9RtHTBnZPa5WKU5uWRs5GoP5M/VqE81QFuMKI5k/SfNQUaOAA=="
)

public_key.verify(b"test", signature)

verify() raises VerifyError if the signature is invalid.

Sign data

Secret keys loaded from disk are usually encrypted. Decrypt the key before signing and wipe its mutable secret buffers when it is no longer needed:

import minisign

with minisign.SecretKey.from_file("/path/to/minisign.key") as secret_key:
    secret_key.decrypt("strong password")
    signature = secret_key.sign(
        b"very important data",
        trusted_comment="release 1.0",
    )

print(bytes(signature).decode())

The default signing mode uses a BLAKE2b prehash. Pass prehash=False when a legacy Ed signature is required.

Generate and store a key pair

KeyPair.generate() creates an unencrypted key using KDF_NONE. Calling encrypt() upgrades it to scrypt and encrypts the secret key before it is serialized:

import os

import minisign

key_pair = minisign.KeyPair.generate()

with key_pair.secret_key as secret_key:
    secret_key.encrypt("strong password")

    with open(
        os.open(
            "/path/to/minisign.key",
            os.O_CREAT | os.O_EXCL | os.O_WRONLY,
            0o600,
        ),
        "wb",
    ) as file:
        file.write(bytes(secret_key) + b"\n")

    with open("/path/to/minisign.pub", "wb") as file:
        file.write(bytes(key_pair.public_key) + b"\n")

encrypt() accepts custom scrypt operation and memory limits. These values are stored in the secret-key format, and the concrete N, r and p parameters are derived from them in the same way as in Minisign:

key_pair = minisign.KeyPair.generate()
key_pair.secret_key.encrypt(
    "strong password",
    opslimit=2_097_152,
    memlimit=67_108_864,
)

Increasing these limits makes password derivation more expensive. Keep the defaults unless the additional cost has been measured for every system that will need to decrypt the key.

Change or remove a password

Decrypt and encrypt a secret key again to change its password:

import minisign

secret_key = minisign.SecretKey.from_file("/path/to/minisign.key")
secret_key.decrypt("old password")
secret_key.encrypt("new password")

encrypt() generates a new random salt. The key identifier, Ed25519 key material and public key remain unchanged, so existing signatures remain valid.

Use remove_password() to remove password protection completely:

import minisign

secret_key = minisign.SecretKey.from_file("/path/to/minisign.key")
secret_key.remove_password("current password")

After this operation the key uses KDF_NONE. Serializing it with bytes(secret_key) produces an unencrypted secret key; store it only in a file with appropriately restricted permissions.

To intentionally keep a secret key unencrypted, serialize it without calling encrypt():

key_pair = minisign.KeyPair.generate()
encoded_secret_key = bytes(key_pair.secret_key)

Sign and verify files

import minisign

public_key = minisign.PublicKey.from_file("/path/to/minisign.pub")

with minisign.SecretKey.from_file("/path/to/minisign.key") as secret_key:
    secret_key.decrypt("strong password")
    secret_key.sign_file(
        "archive.tar.gz",
        prehash=True,
        drop_signature=True,
    )

# Reads archive.tar.gz.minisig automatically.
public_key.verify_file("archive.tar.gz")

Comments

Comment properties contain only their values. They do not include the untrusted comment: or trusted comment: prefixes; serialization adds these prefixes automatically.

Untrusted comments are not authenticated and may be changed without invalidating a signature. Trusted comments are covered by the global signature.

Memory wiping

SecretKey.wipe() overwrites the mutable secret-key buffers and prevents the key object from being used again. Using SecretKey as a context manager calls wipe() automatically, including when the block exits with an exception.

Development

Install the project and development dependencies:

make sync

Run the test suite and static checks:

make format
make check

Build the source distribution and wheel:

make build

Download files

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

Source Distribution

py_minisign-0.21.0.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

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

py_minisign-0.21.0-py3-none-any.whl (13.7 kB view details)

Uploaded Python 3

File details

Details for the file py_minisign-0.21.0.tar.gz.

File metadata

  • Download URL: py_minisign-0.21.0.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for py_minisign-0.21.0.tar.gz
Algorithm Hash digest
SHA256 31a6e5ad8baca594d7e6d7ad73540cffe4a23a39c975ef3b654639e6881aea4f
MD5 09c8ddd5de9cd25d1b9611964c650b39
BLAKE2b-256 f6cb1ae5654e5eb44e75cd77399c716997f6e81af680b78e7a007d41775f8f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_minisign-0.21.0.tar.gz:

Publisher: publish.yml on x13a/py-minisign

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file py_minisign-0.21.0-py3-none-any.whl.

File metadata

  • Download URL: py_minisign-0.21.0-py3-none-any.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for py_minisign-0.21.0-py3-none-any.whl
Algorithm Hash digest
SHA256 377395eba4c6dc32b09dc0d0b226dbb4b2a4498d88b4ad683205541a9828628d
MD5 dfff692ad98f88058b15bba81ff92088
BLAKE2b-256 85afef028f8ca395e33497a542d9f44a7bce53adf0aba4c59d4e6b99371b4d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_minisign-0.21.0-py3-none-any.whl:

Publisher: publish.yml on x13a/py-minisign

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.21.1

2 files

This release

0.21.0 This release

2 files

0.20.0

2 files

0.13.4

2 files

0.13.3

2 files

0.13.2

2 files

0.13.1

2 files

0.13.0

2 files

0.12.0

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