summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--anastasis.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/anastasis.rst b/anastasis.rst
index 339770eb..fb1fdc47 100644
--- a/anastasis.rst
+++ b/anastasis.rst
@@ -214,11 +214,11 @@ key material using an HKDF over a nonce and the kdf_id.
**HKDF()**: The HKDF-function uses two phases: First we use HMAC-SHA512 for the extraction phase, then HMAC-SHA256 is used for expansion phase.
-**kdf_id**: Hashed identifier
+**kdf_id**: Hashed identifier.
-**keysize**: Size of the AES symmetric key, here 32 bytes
+**keysize**: Size of the AES symmetric key, here 32 bytes.
-**ivsize**: Size of the AES GCM IV, here 12 bytes
+**ivsize**: Size of the AES GCM IV, here 12 bytes.
**prekey**: Original key material.
@@ -227,7 +227,7 @@ avoid key reuse. So, we have to use different nonces to get different keys and i
**key**: Symmetric key which is later used to encrypt the documents with AES256-GCM.
-**iv**: IV which will be used for AES-GCM
+**iv**: IV which will be used for AES-GCM.
---------