Fix typo in ghash-riscv64*.pl
authorPhoebe Chen <phoebe.chen@sifive.com>
Thu, 28 Sep 2023 17:01:52 +0000 (10:01 -0700)
committerHugo Landau <hlandau@openssl.org>
Thu, 26 Oct 2023 14:55:49 +0000 (15:55 +0100)
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)

crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl
crypto/modes/asm/ghash-riscv64-zvkg.pl

index 5b150ab0686ccc79a46c29f292ebf0c5abaa3592..c64211c3ab28b881969771a343ed2d6c3f126368 100644 (file)
@@ -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");
index ffc3a8695c4be7c0ff82455447fd80a014a93999..c3217598e455b9ebc35a5ddb948c629223f3a276 100644 (file)
@@ -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");