Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarprause committed Jul 5, 2023
1 parent 8f06b78 commit a5d70f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pairing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl PairingClient {
PublicKey::from_slice(&key).ok_or_else(|| anyhow!("Invalid key..."))?
}
Command::ErrorReport { code, .. } => return Err(code.into()),
_ => return Err(anyhow!("Unknow command...")),
_ => return Err(anyhow!("Unknown command...")),
};

// 7. Both sides calculate DH Key k using function dh1
Expand Down

0 comments on commit a5d70f8

Please sign in to comment.