Use byte instead of i

The identifier `i` is predominantly used for indexing an array but we
are using it as a place holder for the iterated value of an array that
is then printed. The identifier `byte` is more descriptive.

Done in preparation for adding similar code to the `ecdh` module.
This commit is contained in:
Tobin Harding 2022-02-09 06:56:42 +00:00
parent 91106f5685
commit 4ded2c0478
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 2 additions and 2 deletions

View File

@ -101,8 +101,8 @@ impl fmt::Debug for DisplaySecret {
impl fmt::Display for DisplaySecret { impl fmt::Display for DisplaySecret {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for i in &self.secret { for byte in &self.secret {
write!(f, "{:02x}", i)?; write!(f, "{:02x}", byte)?;
} }
Ok(()) Ok(())
} }