dkls23-core 0.5.1

DKLs23 Threshold ECDSA — curve-generic core
Documentation

dkls23-core

Crates.io docs.rs

Curve-generic core implementation of the DKLs23 Threshold ECDSA protocol.

This crate provides the cryptographic primitives and protocol logic for:

  • Distributed Key Generation (DKG) — generate key shares without a trusted dealer
  • Threshold Signing — produce ECDSA signatures with a subset of parties
  • Key Refresh — rotate key shares without changing the public key
  • BIP-32 Derivation — derive child keys from a master key share

Usage

This is the curve-generic core — most users should depend on a curve-specific crate instead:

Use dkls23-core directly only if you need to implement a custom curve via the DklsCurve trait.

[dependencies]
dkls23-core = "0.5"

API Levels

  • High-level: DkgSession and SignSession manage protocol state automatically
  • Low-level: phase1phase4 functions and keep-state types for advanced resumable/stateless orchestration

For session orchestration, transport, and resumable flows, see libtss.

License

Licensed under either of Apache License 2.0 or MIT at your option.