From 00630343ba1e0d320e65f8429e69c46bc80fb5ac Mon Sep 17 00:00:00 2001 From: jelaiw <14236583+jelaiw@users.noreply.github.com> Date: Mon, 9 Oct 2023 00:34:15 +0000 Subject: [PATCH] Fix small "passes" typo. --- Doc/src/signature/eddsa.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/src/signature/eddsa.rst b/Doc/src/signature/eddsa.rst index f2fa6693..fa1809be 100644 --- a/Doc/src/signature/eddsa.rst +++ b/Doc/src/signature/eddsa.rst @@ -8,7 +8,7 @@ as two variants: * *PureEdDSA*, where the message is signed directly. * *HashEdDSA*, where the message is first hashed, and only the resulting digest is signed. - This should only be used by streaming applications because it avoids double passess + This should only be used by streaming applications because it avoids double passes on messages, at the cost of reduced collision resistance. This module supports signatures for both variants (*PureEdDSA* and *HashEdDSA*),