|
1 | 1 | # Fractum |
2 | 2 |
|
3 | | -**Split any sensitive file into encrypted shares** and reconstruct it only when enough shares are pooled → fully offline, no cloud, no single point of failure. |
| 3 | +**Encrypt any sensitive file, then split its encryption key into shares** so the file only comes back when enough shares are pooled → fully offline, no cloud, no single point of failure. |
4 | 4 |
|
5 | 5 | Designed for **long-term cold storage** of critical secrets: recovery credentials, exports of database & password managers, family photos, legal documents, crypto seed phrases. |
6 | 6 |
|
7 | | - |
| 7 | + |
8 | 8 |
|
9 | 9 | **When to use it:** |
10 | 10 |
|
@@ -55,7 +55,7 @@ docker run --rm -it \ |
55 | 55 | --threshold 3 --shares 5 --label "bitwarden-backup" |
56 | 56 | ``` |
57 | 57 |
|
58 | | - |
| 58 | + |
59 | 59 |
|
60 | 60 |
|
61 | 61 | ## Decrypt: |
@@ -83,7 +83,7 @@ Inside the container (or after a manual install), the binary is `fractum`. Prefi |
83 | 83 | fractum -i # interactive mode — guided menu, no flags needed |
84 | 84 | fractum --version # print the version |
85 | 85 |
|
86 | | -# Encrypt: split FILE into N shares, K of which are needed to recover it |
| 86 | +# Encrypt: encrypt FILE, split its key into N shares, K of which are needed to recover it |
87 | 87 | fractum encrypt FILE -t <threshold> -n <shares> [OPTIONS] |
88 | 88 | -t, --threshold <int> shares required to reconstruct (required) |
89 | 89 | -n, --shares <int> total shares to generate (required) |
|
0 commit comments