|
@@ -134,7 +134,7 @@ impl std::fmt::Debug for KeyExchangeState {
|
|
|
)),
|
|
|
Self::WaitForResponse(_) => {
|
|
|
f.write_str("KeyExchangeState::WaitForResponse { redacted }")
|
|
|
- }
|
|
|
+ },
|
|
|
Self::Completed(pkey, _) => f.write_fmt(format_args!(
|
|
|
"KeyExchangeState::Completed {{ pkey: {:?}, redacted }}",
|
|
|
pkey
|
|
@@ -198,7 +198,7 @@ impl EncryptionService {
|
|
|
KeyExchangeState::NoState => {
|
|
|
send();
|
|
|
states.insert(with.clone(), KeyExchangeState::WaitForResponse(secret));
|
|
|
- }
|
|
|
+ },
|
|
|
KeyExchangeState::Given(pubkey) => {
|
|
|
send();
|
|
|
let result = secret.diffie_hellman(&pubkey);
|
|
@@ -210,14 +210,14 @@ impl EncryptionService {
|
|
|
|
|
|
log::trace!("Completed key negotiation with peer!");
|
|
|
states.insert(with.clone(), KeyExchangeState::Completed(pubkey, sk));
|
|
|
- }
|
|
|
+ },
|
|
|
KeyExchangeState::WaitForResponse(secret) => {
|
|
|
send();
|
|
|
states.insert(with.clone(), KeyExchangeState::WaitForResponse(secret));
|
|
|
- }
|
|
|
+ },
|
|
|
KeyExchangeState::Completed(_pubkey, _symmetric_key) => {
|
|
|
log::warn!("asked to begin handshake when already have a good encryption key --- did the peer die?");
|
|
|
- }
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -240,7 +240,7 @@ impl EncryptionService {
|
|
|
|
|
|
drop(states);
|
|
|
self.begin_handshake(&peer);
|
|
|
- }
|
|
|
+ },
|
|
|
KeyExchangeState::Given(peer_pubkey) => {
|
|
|
if peer_pubkey != msg.1.key {
|
|
|
log::info!("peer DH key changed!");
|
|
@@ -249,7 +249,7 @@ impl EncryptionService {
|
|
|
|
|
|
drop(states);
|
|
|
self.begin_handshake(&peer);
|
|
|
- }
|
|
|
+ },
|
|
|
KeyExchangeState::WaitForResponse(secret) => {
|
|
|
// key handshake is finished!
|
|
|
let result = secret.diffie_hellman(&msg.1.key);
|
|
@@ -261,7 +261,7 @@ impl EncryptionService {
|
|
|
|
|
|
states.insert(peer.clone(), KeyExchangeState::Completed(msg.1.key, sk));
|
|
|
drop(states);
|
|
|
- }
|
|
|
+ },
|
|
|
KeyExchangeState::Completed(peer_pubkey, _symmetric_key) => {
|
|
|
if peer_pubkey == msg.1.key {
|
|
|
// it's a repeat, so nothing to do
|
|
@@ -271,7 +271,7 @@ impl EncryptionService {
|
|
|
states.insert(peer.clone(), KeyExchangeState::Given(msg.1.key));
|
|
|
drop(states);
|
|
|
self.begin_handshake(&peer);
|
|
|
- }
|
|
|
+ },
|
|
|
}
|
|
|
log::trace!(
|
|
|
"after processing incoming key exchange message, state: {:?}",
|