2011-04-16 20:41:46 +00:00
|
|
|
{- git-annex crypto types
|
|
|
|
-
|
2020-01-14 16:35:08 +00:00
|
|
|
- Copyright 2011-2020 Joey Hess <id@joeyh.name>
|
2011-04-16 20:41:46 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2011-04-16 20:41:46 +00:00
|
|
|
-}
|
|
|
|
|
2011-12-21 01:47:56 +00:00
|
|
|
module Types.Crypto (
|
2020-01-14 16:35:08 +00:00
|
|
|
EncryptionMethod(..),
|
2011-12-21 01:47:56 +00:00
|
|
|
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(..),
|
2016-05-10 20:50:31 +00:00
|
|
|
cipherKeyIds,
|
2013-03-29 16:06:02 +00:00
|
|
|
Mac(..),
|
|
|
|
readMac,
|
|
|
|
showMac,
|
2020-01-20 19:20:04 +00:00
|
|
|
macMap,
|
2013-03-29 16:06:02 +00:00
|
|
|
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
|
|
|
|
2020-01-14 16:35:08 +00:00
|
|
|
import Data.Typeable
|
2020-01-20 19:20:04 +00:00
|
|
|
import qualified Data.Map as M
|
2023-11-01 18:27:22 +00:00
|
|
|
import Data.ByteString (ByteString)
|
2020-01-14 16:35:08 +00:00
|
|
|
|
|
|
|
data EncryptionMethod
|
|
|
|
= NoneEncryption
|
|
|
|
| SharedEncryption
|
|
|
|
| PubKeyEncryption
|
|
|
|
| SharedPubKeyEncryption
|
|
|
|
| HybridEncryption
|
|
|
|
deriving (Typeable, Eq)
|
|
|
|
|
2024-01-12 17:29:34 +00:00
|
|
|
-- A base-64 encoded random value used for encryption.
|
2011-05-21 15:07:08 +00:00
|
|
|
-- XXX ideally, this would be a locked memory region
|
2023-11-01 18:27:22 +00:00
|
|
|
data Cipher = Cipher ByteString | MacOnlyCipher ByteString
|
2011-04-16 20:41:46 +00:00
|
|
|
|
2016-05-10 20:50:31 +00:00
|
|
|
data StorableCipher
|
2023-11-01 18:27:22 +00:00
|
|
|
= EncryptedCipher ByteString EncryptedCipherVariant KeyIds
|
|
|
|
| SharedCipher ByteString
|
|
|
|
| SharedPubKeyCipher ByteString KeyIds
|
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
|
|
|
|
2016-05-10 20:50:31 +00:00
|
|
|
cipherKeyIds :: StorableCipher -> Maybe KeyIds
|
|
|
|
cipherKeyIds (EncryptedCipher _ _ ks) = Just ks
|
|
|
|
cipherKeyIds (SharedPubKeyCipher _ ks) = Just ks
|
|
|
|
cipherKeyIds (SharedCipher _) = Nothing
|
|
|
|
|
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
|
2020-01-20 19:20:04 +00:00
|
|
|
readMac n = M.lookup n macMap
|
|
|
|
|
|
|
|
macMap :: M.Map String Mac
|
|
|
|
macMap = M.fromList
|
|
|
|
[ ("HMACSHA1", HmacSha1)
|
|
|
|
, ("HMACSHA224", HmacSha224)
|
|
|
|
, ("HMACSHA256", HmacSha256)
|
|
|
|
, ("HMACSHA384", HmacSha384)
|
|
|
|
, ("HMACSHA512", HmacSha512)
|
|
|
|
]
|