Skip to content

Commit

Permalink
Fix typo in ghash-riscv64*.pl
Browse files Browse the repository at this point in the history
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 #21923)
  • Loading branch information
phoebesv authored and hlandau committed Oct 26, 2023
1 parent 94474e0 commit 33469d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crypto/modes/asm/ghash-riscv64-zvbb-zvbc.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion crypto/modes/asm/ghash-riscv64-zvkg.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 33469d0

Please sign in to comment.