commit 9b288441114500cb3cff9cf329175b1de90245b3
parent e8213178ad640c7fb0e22e9516754bcc1a55efb2
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Wed, 7 Apr 2021 03:29:25 -0400
use ‘:=’ instead of ‘=’ in pseudocode code-block (three instances)
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/anastasis.rst b/anastasis.rst
@@ -280,11 +280,11 @@ inaccessible to those who do not have the answer:
.. code-block:: none
- powh = POW_HASH (qsalt, answer)
- ekss = HKDF("Anastasis-secure-question-uuid-salting",
- powh,
- uuid);
- (iv_i, key_i) = HKDF(key_id, nonce_i, ekss, [optional data], keysize + ivsize)
+ powh := POW_HASH (qsalt, answer)
+ ekss := HKDF("Anastasis-secure-question-uuid-salting",
+ powh,
+ uuid);
+ (iv_i, key_i) := HKDF(key_id, nonce_i, ekss, [optional data], keysize + ivsize)
**qsalt**: salt value used to hash answer to satisfy the challenge to prevent the provider from determining the answer via guessing.