Skip to content

Commit

Permalink
algorithms: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Thore Sommer <[email protected]>
  • Loading branch information
THS-on authored and ansasaki committed Feb 8, 2023
1 parent 815ad13 commit 5ea9d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keylime/src/algorithms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl TryFrom<&str> for EncryptionAlgorithm {
"rsa" => Ok(EncryptionAlgorithm::Rsa),
"ecc" => Ok(EncryptionAlgorithm::Ecc),
_ => Err(AlgorithmError::Encrypt(format!(
"Encryption alogorithm {value} not supported by Keylime"
"Encryption algorithm {value} not supported by Keylime"
))),
}
}
Expand Down

0 comments on commit 5ea9d76

Please sign in to comment.