summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2021-04-07 03:29:25 -0400
committerThien-Thi Nguyen <ttn@gnuvola.org>2021-04-07 03:29:25 -0400
commit9b288441114500cb3cff9cf329175b1de90245b3 (patch)
tree8debdd07effc75b892ca99b0892cdc98f9335bac
parente8213178ad640c7fb0e22e9516754bcc1a55efb2 (diff)
downloaddocs-9b288441114500cb3cff9cf329175b1de90245b3.tar.gz
docs-9b288441114500cb3cff9cf329175b1de90245b3.tar.bz2
docs-9b288441114500cb3cff9cf329175b1de90245b3.zip
use ‘:=’ instead of ‘=’ in pseudocode code-block (three instances)
-rw-r--r--anastasis.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/anastasis.rst b/anastasis.rst
index a2d12496..b447f335 100644
--- 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.