Skip to content

Commit 828655b

Browse files
authored
Merge pull request briansmith#1550 from briansmith/b/merge-boringssl-5
Merge BoringSSL through 53a87b7.
2 parents 414a7dc + d0513bd commit 828655b

File tree

5 files changed

+1657
-8
lines changed

5 files changed

+1657
-8
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ include = [
104104
"crypto/poly1305/poly1305_arm.c",
105105
"crypto/poly1305/poly1305_arm_asm.S",
106106
"crypto/poly1305/poly1305_vec.c",
107+
"crypto/cipher_extra/asm/chacha20_poly1305_armv8.pl",
107108
"crypto/cipher_extra/asm/chacha20_poly1305_x86_64.pl",
108109
"doc/link-to-readme.md",
109110
"examples/**/*.rs",

build.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,11 @@ const RING_SRCS: &[(&[&str], &str)] = &[
8383
(&[ARM], "crypto/fipsmodule/sha/asm/sha256-armv4.pl"),
8484
(&[ARM], "crypto/fipsmodule/sha/asm/sha512-armv4.pl"),
8585

86+
(&[AARCH64], "crypto/chacha/asm/chacha-armv8.pl"),
87+
(&[AARCH64], "crypto/cipher_extra/asm/chacha20_poly1305_armv8.pl"),
8688
(&[AARCH64], "crypto/fipsmodule/aes/asm/vpaes-armv8.pl"),
8789
(&[AARCH64], "crypto/fipsmodule/bn/asm/armv8-mont.pl"),
8890
(&[AARCH64], "crypto/fipsmodule/ec/asm/p256-armv8-asm.pl"),
89-
(&[AARCH64], "crypto/chacha/asm/chacha-armv8.pl"),
9091
(&[AARCH64], "crypto/fipsmodule/modes/asm/ghash-neon-armv8.pl"),
9192
(&[AARCH64], SHA512_ARMV8),
9293
];

0 commit comments

Comments
 (0)