Update diff_asm.go
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>
diff --git a/util/diff_asm.go b/util/diff_asm.go
index e45b23f..8f53109 100644
--- a/util/diff_asm.go
+++ b/util/diff_asm.go
@@ -39,9 +39,13 @@
}
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",
@@ -49,6 +53,8 @@
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
}