Skip to main content

Create and verify distributed multi-party signatures

Project description

A command-line tool for creating and verifying distributed multi-party signatures.

Installation

$ virtualenv env
$ . env/bin/activate
$ pip install -e .

Usage

Key generation

On one machine, run:

$ partysig keygen start

On the other machines, run:

$ partysig keygen join

Signing

On the machine with the file to sign, run:

$ partysig sign start FILE

On the other machines, run:

$ partysig sign join

Verifying signatures

Run:

$ partysig verify FILE SIGNATURE

Design

The current signature version (v1) implements Bitcoin-style multi-sig, where the overall multisignature contains:

  • The number of signatures required for the multisignature to be valid

  • The public keys allowed to create signatures

  • Signatures from a subset of those keys

The first two parts together are equivalent to a Bitcoin script, and are similarly hashed to get the “master key” for the multi-party signature group. Ed25519 is used for the individual signatures, and BLAKE2b is used for creating the master key.

Signature format

Version    (1-byte uint)     \
Threshold  (1-byte uint)      |_ Hashed to obtain
Size       (1-byte uint)      |  the master key
Pubkeys    (32 x size bytes) /
Signatures (64 x threshold bytes)

Acknowledgements

Project details


Download files

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

Source Distribution

partysig-0.0.1.tar.gz (22.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page