From 94cf15f97722c531bd3e5f18fd524a37b823ae12 Mon Sep 17 00:00:00 2001 From: asonix Date: Sun, 12 May 2024 15:04:52 -0500 Subject: [PATCH] Go the other way - use aws_lc_rs instead of ring --- actix-tls/Cargo.toml | 2 +- actix-tls/tests/accept-openssl.rs | 4 ++-- actix-tls/tests/accept-rustls.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 8b9901eb..8fce2836 100644 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -127,7 +127,7 @@ futures-util = { version = "0.3.17", default-features = false, features = ["sink itertools = "0.12" rcgen = "0.12" rustls-pemfile = "2" -tokio-rustls-026 = { package = "tokio-rustls", version = "0.26", default-features = false, features = ["ring"] } +tokio-rustls-026 = { package = "tokio-rustls", version = "0.26" } trust-dns-resolver = "0.23" [[example]] diff --git a/actix-tls/tests/accept-openssl.rs b/actix-tls/tests/accept-openssl.rs index 638fc774..217e8e5d 100644 --- a/actix-tls/tests/accept-openssl.rs +++ b/actix-tls/tests/accept-openssl.rs @@ -88,7 +88,7 @@ mod danger { } fn supported_verify_schemes(&self) -> Vec { - rustls::crypto::ring::default_provider() + rustls::crypto::aws_lc_rs::default_provider() .signature_verification_algorithms .supported_schemes() } @@ -111,7 +111,7 @@ fn rustls_connector(_cert: String, _key: String) -> ClientConfig { #[actix_rt::test] async fn accepts_connections() { - tokio_rustls_026::rustls::crypto::ring::default_provider() + tokio_rustls_026::rustls::crypto::aws_lc_rs::default_provider() .install_default() .unwrap(); diff --git a/actix-tls/tests/accept-rustls.rs b/actix-tls/tests/accept-rustls.rs index e872b103..bc29971c 100644 --- a/actix-tls/tests/accept-rustls.rs +++ b/actix-tls/tests/accept-rustls.rs @@ -73,7 +73,7 @@ fn openssl_connector(cert: String, key: String) -> SslConnector { #[actix_rt::test] async fn accepts_connections() { - tokio_rustls_026::rustls::crypto::ring::default_provider() + tokio_rustls_026::rustls::crypto::aws_lc_rs::default_provider() .install_default() .unwrap();