Introduction
FROSTore is a tool to prevent your Private Key from being compromised and used to sign data without your permission.
FROSTore allows you to use Ed25519 threshold signatures to bring distributed trust to your application. Keys generated by FROSTore are never combined into a single key, and are never stored on any single device. This means that even if a device is compromised, your private key is still safe.
Features
- Create, store, and manage threshold signatures
- Sign data with threshold signatures
- Distributed Key Generation (DKG)
- Customizable Minimum and Maximum thresholds
Example
A basic example of how to use FROSTore to generate a keypair (using DKG) and sign some data.
use *;
static TOTAL_PEERS: u16 = 3;
static MIN_THRESHOLD: u16 = 2;
static BOOT_NODES: = ;
async
We have provided a few more examples to help you get started. You can find them in the /examples/
directory.
For more information on how to use FROSTore, please check our docs.
Research
FROSTore is primarily based on the following research papers: