summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/s2k.rs
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2019-10-27 22:45:01 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2019-10-27 22:45:01 -0400
commitd3336f34c0d953b6cfd6cc9d4757fd31c1ac31ae (patch)
treeaac95b974bd51187efc572a21fb28dd55b0b810e /openpgp/src/crypto/s2k.rs
parent6b1c86756c1a3945fec84e3703e991ef1ee99fee (diff)
Fix more spelling errors caught by codespell
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Diffstat (limited to 'openpgp/src/crypto/s2k.rs')
-rw-r--r--openpgp/src/crypto/s2k.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/s2k.rs b/openpgp/src/crypto/s2k.rs
index 44655613..2a819c47 100644
--- a/openpgp/src/crypto/s2k.rs
+++ b/openpgp/src/crypto/s2k.rs
@@ -74,7 +74,7 @@ impl Default for S2K {
}
impl S2K {
- /// Convert the string to a key using the S2K's paramters.
+ /// Convert the string to a key using the S2K's parameters.
pub fn derive_key(&self, string: &Password, key_size: usize)
-> Result<SessionKey> {
match self {