quality of life improvemnts

This commit is contained in:
2021-12-30 22:36:28 +01:00
parent c8b2539414
commit 2def365cae
5 changed files with 28 additions and 6 deletions

View File

@@ -30,7 +30,12 @@ Check out the demo and see for yourself https://cryptgeon.nicco.io.
## How does it work?
each note has a 512bit generated <i>id</i> that is used to retrieve the note. data is stored in memory and never persisted to disk.
each note has a generated <code>id (256bit)</code> and <code>key 256(bit)</code>. The
<code>id</code>
is used to save & retrieve the note. the note is then encrypted with aes in gcm mode on the
client side with the <code>key</code> and then sent to the server. data is stored in memory and
never persisted to disk. the server never sees the encryption key and cannot decrypt the contents
of the notes even if it tried to.
## Screenshot