summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2019-10-27 22:34:17 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2019-10-27 22:34:17 -0400
commit6b1c86756c1a3945fec84e3703e991ef1ee99fee (patch)
tree7a71061a6a6a768a890266590846e778185c738f
parentb73b3e1c747b7a25a260d898b3cec171d7a9e435 (diff)
Fix spelling of TripleDES
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
-rw-r--r--openpgp/src/constants/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/constants/mod.rs b/openpgp/src/constants/mod.rs
index 4623a328..06aad9d6 100644
--- a/openpgp/src/constants/mod.rs
+++ b/openpgp/src/constants/mod.rs
@@ -436,7 +436,7 @@ impl fmt::Display for SymmetricAlgorithm {
SymmetricAlgorithm::IDEA =>
f.write_str("IDEA"),
SymmetricAlgorithm::TripleDES =>
- f.write_str("TipleDES (EDE-DES, 168 bit key derived from 192))"),
+ f.write_str("TripleDES (EDE-DES, 168 bit key derived from 192))"),
SymmetricAlgorithm::CAST5 =>
f.write_str("CAST5 (128 bit key, 16 rounds)"),
SymmetricAlgorithm::Blowfish =>