diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-04 22:24:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-04 22:24:01 -0400 |
commit | 732ab57a6ff82e80b06be90d1e1bab1dd9295926 (patch) | |
tree | 9e8950adcc3c3ecc635979bbb84c3a6a55b6c870 | |
parent | 4c96f460a7ad615f344d1b2e88d037d7a0259776 (diff) |
redundant comment
-rw-r--r-- | Crypto.hs | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -114,7 +114,6 @@ encryptCipher :: Cipher -> EncryptedCipherVariant -> KeyIds -> IO StorableCipher encryptCipher (Cipher c) variant (KeyIds ks) = do -- gpg complains about duplicate recipient keyids let ks' = nub $ sort ks - -- The cipher itself is always encrypted to the given public keys let params = Gpg.pkEncTo ks' ++ Gpg.stdEncryptionParams False encipher <- Gpg.pipeStrict params c return $ EncryptedCipher encipher variant (KeyIds ks') |