2011-04-16 20:41:46 +00:00
|
|
|
{- git-annex crypto types
|
|
|
|
-
|
2015-04-19 14:54:12 +00:00
|
|
|
- Copyright 2011-2015 Joey Hess <id@joeyh.name>
|
2011-04-16 20:41:46 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-12-21 01:47:56 +00:00
|
|
|
module Types.Crypto (
|
|
|
|
Cipher(..),
|
2012-04-29 18:02:18 +00:00
|
|
|
StorableCipher(..),
|
2013-09-05 02:18:33 +00:00
|
|
|
EncryptedCipherVariant(..),
|
2011-12-21 01:47:56 +00:00
|
|
|
KeyIds(..),
|
2013-03-29 16:06:02 +00:00
|
|
|
Mac(..),
|
|
|
|
readMac,
|
|
|
|
showMac,
|
|
|
|
defaultMac,
|
|
|
|
calcMac,
|
2011-12-21 01:47:56 +00:00
|
|
|
) where
|
|
|
|
|
2015-04-19 14:57:14 +00:00
|
|
|
import Utility.Hash
|
2011-12-21 01:47:56 +00:00
|
|
|
import Utility.Gpg (KeyIds(..))
|
2011-04-16 20:41:46 +00:00
|
|
|
|
2011-05-21 15:07:08 +00:00
|
|
|
-- XXX ideally, this would be a locked memory region
|
2013-09-05 06:09:39 +00:00
|
|
|
data Cipher = Cipher String | MacOnlyCipher String
|
2011-04-16 20:41:46 +00:00
|
|
|
|
2013-09-05 02:18:33 +00:00
|
|
|
data StorableCipher = EncryptedCipher String EncryptedCipherVariant KeyIds
|
2013-09-01 18:12:00 +00:00
|
|
|
| SharedCipher String
|
2011-12-08 20:01:46 +00:00
|
|
|
deriving (Ord, Eq)
|
2013-09-05 15:12:01 +00:00
|
|
|
data EncryptedCipherVariant = Hybrid | PubKey
|
2013-09-05 02:18:33 +00:00
|
|
|
deriving (Ord, Eq)
|
2013-03-29 16:06:02 +00:00
|
|
|
|
|
|
|
defaultMac :: Mac
|
|
|
|
defaultMac = HmacSha1
|
|
|
|
|
|
|
|
-- MAC algorithms are shown as follows in the file names.
|
|
|
|
showMac :: Mac -> String
|
|
|
|
showMac HmacSha1 = "HMACSHA1"
|
|
|
|
showMac HmacSha224 = "HMACSHA224"
|
|
|
|
showMac HmacSha256 = "HMACSHA256"
|
|
|
|
showMac HmacSha384 = "HMACSHA384"
|
|
|
|
showMac HmacSha512 = "HMACSHA512"
|
|
|
|
|
|
|
|
-- Read the MAC algorithm from the remote config.
|
|
|
|
readMac :: String -> Maybe Mac
|
|
|
|
readMac "HMACSHA1" = Just HmacSha1
|
|
|
|
readMac "HMACSHA224" = Just HmacSha224
|
|
|
|
readMac "HMACSHA256" = Just HmacSha256
|
|
|
|
readMac "HMACSHA384" = Just HmacSha384
|
|
|
|
readMac "HMACSHA512" = Just HmacSha512
|
|
|
|
readMac _ = Nothing
|