note sharding secrets

This commit is contained in:
Malin Freeborn 2024-05-13 20:15:28 +02:00
parent d4ca81c2ae
commit 51e489a8e3
Signed by: andonome
GPG Key ID: 52295D2377F4D70F
1 changed files with 23 additions and 0 deletions

23
data/sharing_secrest.md Normal file
View File

@ -0,0 +1,23 @@
---
title: "Sharing Secrets"
tags: [ "data", "death", "secrets", "ssss" ]
---
You can share parts of a secret with multiple people, so only some of them need to agree to see the secret.
Install `ssss`, then decide on the total number of secrets (`N`), and the threshold of people who must share their shard of the secret in order to reveal the secret.
```bash
N=5
T=3
FILE=secret.txt
fortune | ssss-split -t $T -n $N > $FILE
```
Each shard is a line inside secret.txt.
Check it's working:
```bash
head -n $T $FILE | ssss-combine -t $T
tail -n $T $FILE | ssss-combine -t $T
```