This is an automated email from the ASF dual-hosted git repository.
gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git
The following commit(s) were added to refs/heads/trunk by this push:
new b98c4c2 missing colon
b98c4c2 is described below
commit b98c4c2bd137b956444bd919656ee7035a3989d0
Author: Greg Stein <[email protected]>
AuthorDate: Fri May 27 02:57:08 2022 -0400
missing colon
The footnote requires [^blah]: ... that colon is required.
---
v3/README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/v3/README.md b/v3/README.md
index 8e7455b..fd1f068 100644
--- a/v3/README.md
+++ b/v3/README.md
@@ -114,7 +114,7 @@ to decrypt all the votes and perform the tally).
`Encrypt()` and `Decrypt()` are a **symmetric** encryption algorithm,
so that votestrings can be recovered. This will
-be implemented using the `Fernet` system[^1] in the `cryptography` Python
+be implemented using the `Fernet` system[^fernet] in the `cryptography` Python
package. Note that Argon2 produces 32 byte hash values, which matches
the 32 bytes needed for a Fernet key.
@@ -144,4 +144,4 @@ from the authenticated credentials.
Notes: be wary of repeats; collect STV votestrings, for passing in-bulk
to the STV algorithm.
-[^1] https://cryptography.io/en/latest/fernet/
+[^fernet]: https://cryptography.io/en/latest/fernet/