Skip to content

Commit

Permalink
Update diff_asm.go
Browse files Browse the repository at this point in the history
We've since added a few more files that don't have a counterpart in
OpenSSL, or are named differently from their OpenSSL counterparts.

Change-Id: I7057d8b258cb9656924054022654359d11a164f8
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/74667
Reviewed-by: Adam Langley <agl@google.com>
Auto-Submit: David Benjamin <davidben@google.com>
Commit-Queue: Adam Langley <agl@google.com>
  • Loading branch information
davidben authored and Boringssl LUCI CQ committed Jan 2, 2025
1 parent 8229027 commit 04c1992
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions util/diff_asm.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,22 @@ func mapName(path string) string {
}
switch pathSlash {
case "crypto/aes/asm/vpaes-armv7.pl",
"crypto/bn/asm/bn-armv8.pl",
"crypto/cipher_extra/asm/aes128gcmsiv-x86_64.pl",
"crypto/cipher_extra/asm/chacha20_poly1305_armv8.pl",
"crypto/cipher_extra/asm/chacha20_poly1305_x86_64.pl",
"crypto/ec/asm/p256_beeu-armv8-asm.pl",
"crypto/ec/asm/p256_beeu-x86_64-asm.pl",
"crypto/modes/asm/aesv8-gcm-armv8.pl",
"crypto/modes/asm/ghash-neon-armv8.pl",
"crypto/modes/asm/ghash-ssse3-x86.pl",
"crypto/modes/asm/ghash-ssse3-x86_64.pl",
"crypto/rand/asm/rdrand-x86_64.pl":
return ""
case "crypto/ec/asm/p256-x86_64-asm.pl":
return filepath.FromSlash("crypto/ec/asm/ecp_nistz256-x86_64.pl")
case "crypto/ec/asm/p256-armv8-asm.pl":
return filepath.FromSlash("crypto/ec/asm/ecp_nistz256-armv8.pl")
}
return path
}
Expand Down

0 comments on commit 04c1992

Please sign in to comment.