Skip to content

Commit

Permalink
Fix keys
Browse files Browse the repository at this point in the history
  • Loading branch information
nyonson committed Apr 11, 2024
1 parent 21f46e7 commit 47bf6d6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions protocol/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@ impl<'a> Handshake<'a> {
}
Role::Responder => {
let materials = get_shared_secrets(
self.point.elligator_swift,
theirs,
self.point.elligator_swift,
self.point.secret_key,
ElligatorSwiftParty::B,
self.network,
Expand All @@ -674,8 +674,6 @@ impl<'a> Handshake<'a> {
}
};

println!("{:?}", materials);

let mut packet_handler = PacketHandler::new(materials, self.role.clone());

// TODO: Support decoy packets.
Expand Down

0 comments on commit 47bf6d6

Please sign in to comment.