\
agree
is a CLI tool for easily applying multi-key-turn security via Shamirs Secret Sharing
.
agree
is unstable.
To split a secret (file) into shares, execute one of the following examples.:
Cargo.toml
): \
agree interactive split -s Cargo.toml
STDOUT
(this approach uses process substitution): \
agree interactive split -s <(printf "secret")
This command is interactive and asks the user to provide data like s hare name, file path and optional password to encrypt the share data.
In the following example, the secret was split into 2 shares. We need to provide exactly two shares in order to restore the secret and write it to STDOUT
.\
This command is interactive as it might prompt for the password of the share if it's share dataa is encrypted.
agree interactive restore -s ./share1.file -s ./share2.file
The example below will split the secret into three shares with a restore threshold of two. Assuming the file is called blueprint.yaml
, we can use the following command:
bash
agree headless split -s `Cargo.toml` -b `blueprint.yaml`
```yaml:blueprint.yaml threshold: 2 generate: - path: ./test/alice.share - path: ./test/bob.share name: bob encrypt: !plain example-bob info: true comment: boosker - path: ./test/charlie.share name: charlie encrypt: !shell printf example-charlie
```