warnings fix

This commit is contained in:
2026-03-20 15:36:56 +07:00
parent 1e5c8e899b
commit 4b3b1ef67b
20 changed files with 46 additions and 89 deletions
-2
View File
@@ -56,7 +56,6 @@ pub struct SessionKeys {
pub ecdh: ECDH,
pub auth_key: [u8; 32],
pub current_aead: Option<([u8; 32], [u8; 12], [u8; 32], [u8; 12])>,
is_initiator: bool,
}
impl SessionKeys {
@@ -66,7 +65,6 @@ impl SessionKeys {
ecdh: ECDH::new(),
auth_key: [0u8; 32],
current_aead: None,
is_initiator,
}
}