2011-04-16 16:41:46 -04:00
|
|
|
{- git-annex crypto types
|
|
|
|
-
|
2015-04-19 10:54:12 -04:00
|
|
|
- Copyright 2011-2015 Joey Hess <id@joeyh.name>
|
2011-04-16 16:41:46 -04:00
|
|
|
-
|
2019-03-13 15:48:14 -04:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2011-04-16 16:41:46 -04:00
|
|
|
-}
|
|
|
|
|
2011-12-20 21:47:56 -04:00
|
|
|
module Types.Crypto (
|
|
|
|
Cipher(..),
|
2012-04-29 14:02:18 -04:00
|
|
|
StorableCipher(..),
|
2013-09-04 22:18:33 -04:00
|
|
|
EncryptedCipherVariant(..),
|
2011-12-20 21:47:56 -04:00
|
|
|
KeyIds(..),
|
2016-05-10 16:50:31 -04:00
|
|
|
cipherKeyIds,
|
2013-03-29 17:06:02 +01:00
|
|
|
Mac(..),
|
|
|
|
readMac,
|
|
|
|
showMac,
|
|
|
|
defaultMac,
|
|
|
|
calcMac,
|
2011-12-20 21:47:56 -04:00
|
|
|
) where
|
|
|
|
|
2015-04-19 10:57:14 -04:00
|
|
|
import Utility.Hash
|
2011-12-20 21:47:56 -04:00
|
|
|
import Utility.Gpg (KeyIds(..))
|
2011-04-16 16:41:46 -04:00
|
|
|
|
2011-05-21 11:07:08 -04:00
|
|
|
-- XXX ideally, this would be a locked memory region
|
2013-09-05 08:09:39 +02:00
|
|
|
data Cipher = Cipher String | MacOnlyCipher String
|
2011-04-16 16:41:46 -04:00
|
|
|
|
2016-05-10 16:50:31 -04:00
|
|
|
data StorableCipher
|
|
|
|
= EncryptedCipher String EncryptedCipherVariant KeyIds
|
|
|
|
| SharedCipher String
|
|
|
|
| SharedPubKeyCipher String KeyIds
|
2011-12-08 16:01:46 -04:00
|
|
|
deriving (Ord, Eq)
|
2013-09-05 11:12:01 -04:00
|
|
|
data EncryptedCipherVariant = Hybrid | PubKey
|
2013-09-04 22:18:33 -04:00
|
|
|
deriving (Ord, Eq)
|
2013-03-29 17:06:02 +01:00
|
|
|
|
2016-05-10 16:50:31 -04:00
|
|
|
cipherKeyIds :: StorableCipher -> Maybe KeyIds
|
|
|
|
cipherKeyIds (EncryptedCipher _ _ ks) = Just ks
|
|
|
|
cipherKeyIds (SharedPubKeyCipher _ ks) = Just ks
|
|
|
|
cipherKeyIds (SharedCipher _) = Nothing
|
|
|
|
|
2013-03-29 17:06:02 +01: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
|