From afe4c7fb0308b41de3a45863ce0916d266f3c06f Mon Sep 17 00:00:00 2001 From: Georgio Nicolas Date: Fri, 13 Feb 2026 10:52:22 +0100 Subject: [PATCH] use authenicator on the responder's side --- common/nym-lp-sandbox/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/nym-lp-sandbox/src/lib.rs b/common/nym-lp-sandbox/src/lib.rs index 888e01653d..1a02595840 100644 --- a/common/nym-lp-sandbox/src/lib.rs +++ b/common/nym-lp-sandbox/src/lib.rs @@ -46,7 +46,7 @@ mod tests { responder_mlkem_keypair.1.as_slice().as_slice(), ); - let r_dir_hash_mceliece = hash_encapsulation_key( + let _r_dir_hash_mceliece = hash_encapsulation_key( // &ciphersuite.hash_function(), &hash_function, // ciphersuite.hash_len(), @@ -210,7 +210,7 @@ mod tests { .serialize( &mut session_storage, SessionBinding { - initiator_authenticator: &Authenticator::Dh(initiator_psq_keys.pk), + initiator_authenticator: &initiator_authenticator, responder_ecdh_pk: &responder_x25519_keypair.pk, responder_pq_pk: Some(PQEncapsulationKey::MlKem(&mlkem_key)), }, @@ -219,7 +219,7 @@ mod tests { let mut r_transport = Session::deserialize( &session_storage, SessionBinding { - initiator_authenticator: &Authenticator::Dh(initiator_psq_keys.pk), + initiator_authenticator: &initiator_authenticator, responder_ecdh_pk: &responder_x25519_keypair.pk, responder_pq_pk: Some(PQEncapsulationKey::MlKem(&mlkem_key)), },