crypto notes

This commit is contained in:
Alex 2022-05-18 23:34:45 +02:00
parent ca9b1900e3
commit 0b42557042
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,7 @@ Keys that are stored in K2V under PK `keys`:
Operations:
- **Initialize**(`password`):
- if `"salt"` or `"public"` already exist, BAIL
- generate salt `S` (32 random bytes)
- write `S` at `"salt"`
- `write("salt", S)`
@ -79,6 +80,7 @@ Operations:
- serialize `box_contents = (private, master)`
- seal box `blob = seal_key(box_contents)`
- write `concat(Skey, blob)` at `"password:{hex(digest[..16])}"`
- write `public` at `"public"`
- **Open**(`password`):
- load `S = read("salt")`