From 84dc67eede8d5f4b36e2bc56b466ed3c488d40b6 Mon Sep 17 00:00:00 2001 From: 0xprincedev Date: Wed, 5 Nov 2025 21:23:21 -0500 Subject: [PATCH] Fixed typos in src/ciphers/salsa.rs --- src/ciphers/salsa.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ciphers/salsa.rs b/src/ciphers/salsa.rs index 83b37556ff1..e6adba648f4 100644 --- a/src/ciphers/salsa.rs +++ b/src/ciphers/salsa.rs @@ -19,7 +19,7 @@ macro_rules! quarter_round { /// seems to be a sane choice. /// /// The 16 input numbers can be thought of as the elements of a 4x4 matrix like -/// the one bellow, on which we do the main operations of the cipher. +/// the one below, on which we do the main operations of the cipher. /// /// ```text /// +----+----+----+----+ @@ -33,7 +33,7 @@ macro_rules! quarter_round { /// +----+----+----+----+ /// ``` /// -/// As per the diagram bellow, `input[0, 5, 10, 15]` are the constants mentioned +/// As per the diagram below, `input[0, 5, 10, 15]` are the constants mentioned /// above, `input[1, 2, 3, 4, 11, 12, 13, 14]` is filled with the key, and /// `input[6, 7, 8, 9]` should be filled with nonce and counter values. The output /// of the function is stored in `output` variable and can be XORed with the