From: Phoebe Chen Date: Thu, 28 Sep 2023 17:01:52 +0000 (-0700) Subject: Fix typo in ghash-riscv64*.pl X-Git-Tag: openssl-3.3.0-alpha1~749 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33469d0370a67d754c00513f1d8b263768e568b7;p=thirdparty%2Fopenssl.git Fix typo in ghash-riscv64*.pl Changed "mutiple" to "multiple" for improved clarity and correctness. Signed-off-by: Phoebe Chen Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/21923) --- diff --git a/crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl b/crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl index 5b150ab0686..c64211c3ab2 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 ffc3a8695c4..c3217598e45 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");