summaryrefslogtreecommitdiffstats
path: root/crypto/modes
diff options
context:
space:
mode:
authorPhoebe Chen <phoebe.chen@sifive.com>2023-09-28 10:01:52 -0700
committerHugo Landau <hlandau@openssl.org>2023-10-26 15:55:49 +0100
commit33469d0370a67d754c00513f1d8b263768e568b7 (patch)
treee08aa86b1b1e77d3a7d31b5414f5a26d864cbef7 /crypto/modes
parent94474e02fa217c037ece9d819a9b12025f65cdb9 (diff)
Fix typo in ghash-riscv64*.pl
Changed "mutiple" to "multiple" for improved clarity and correctness. Signed-off-by: Phoebe Chen <phoebe.chen@sifive.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21923)
Diffstat (limited to 'crypto/modes')
-rw-r--r--crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl2
-rw-r--r--crypto/modes/asm/ghash-riscv64-zvkg.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl b/crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl
index 5b150ab068..c64211c3ab 100644
--- a/crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl
+++ b/crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl
@@ -239,7 +239,7 @@ ___
# input: Xi: current hash value
# Htable: preprocessed H
# inp: pointer to input data
-# len: length of input data in bytes (mutiple of block size)
+# len: length of input data in bytes (multiple of block size)
# output: Xi: Xi+1 (next hash value Xi)
{
my ($Xi,$Htable,$inp,$len,$TMP0,$TMP1,$TMP2,$TMP3,$M8,$TMP5,$TMP6) = ("a0","a1","a2","a3","t0","t1","t2","t3","t4","t5","t6");
diff --git a/crypto/modes/asm/ghash-riscv64-zvkg.pl b/crypto/modes/asm/ghash-riscv64-zvkg.pl
index ffc3a8695c..c3217598e4 100644
--- a/crypto/modes/asm/ghash-riscv64-zvkg.pl
+++ b/crypto/modes/asm/ghash-riscv64-zvkg.pl
@@ -132,7 +132,7 @@ ___
# input: Xi: current hash value
# Htable: copy of H
# inp: pointer to input data
-# len: length of input data in bytes (mutiple of block size)
+# len: length of input data in bytes (multiple of block size)
# output: Xi: Xi+1 (next hash value Xi)
{
my ($Xi,$Htable,$inp,$len) = ("a0","a1","a2","a3");