diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-05 11:12:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-05 11:12:01 -0400 |
commit | c4990a41c430d541cefe27a53a39e7eb60e217a8 (patch) | |
tree | 21d81f15eb51cef5aa9a5047d0783e4ffbcb04e5 /Types/Crypto.hs | |
parent | 217b0d3794ea466c64654b3bd91bbfb55cc40248 (diff) |
rename constructor for clariy
Diffstat (limited to 'Types/Crypto.hs')
-rw-r--r-- | Types/Crypto.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Types/Crypto.hs b/Types/Crypto.hs index 487a29391..6d4131129 100644 --- a/Types/Crypto.hs +++ b/Types/Crypto.hs @@ -28,7 +28,7 @@ data Cipher = Cipher String | MacOnlyCipher String data StorableCipher = EncryptedCipher String EncryptedCipherVariant KeyIds | SharedCipher String deriving (Ord, Eq) -data EncryptedCipherVariant = HybridCipher | PubKeyCipher +data EncryptedCipherVariant = Hybrid | PubKey deriving (Ord, Eq) {- File names are (client-side) MAC'ed on special remotes. |