Use aws-lc-rs everywhere

This commit is contained in:
Maurus Decimus
2026-04-09 16:52:25 +02:00
parent ef8e56b4ca
commit e4a4cf8fce
18 changed files with 44 additions and 34 deletions

View File

@@ -21,7 +21,7 @@ use registry::{
},
types::map::Map,
};
use ring::hmac;
use aws_lc_rs::hmac;
use std::{
sync::{
Arc,

View File

@@ -91,7 +91,7 @@ pub struct TestServerBuilder {
impl TestServerBuilder {
pub async fn new(test_name: &str) -> Self {
let _ = rustls::crypto::aws_lc_rs::default_provider().install_default();
//let _ = rustls::crypto::aws_lc_rs::default_provider().install_default();
let reset = std::env::var("NO_INSERT").is_err();
Self::new_with_role(test_name, "mail.example.org".to_string(), None, reset).await