2011-04-16 16:41:46 -04:00
|
|
|
{- git-annex crypto types
|
|
|
|
-
|
2020-01-14 12:35:08 -04:00
|
|
|
- Copyright 2011-2020 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 (
|
2020-01-14 12:35:08 -04:00
|
|
|
EncryptionMethod(..),
|
2011-12-20 21:47:56 -04:00
|
|
|
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,
|
2020-01-20 15:20:04 -04:00
|
|
|
macMap,
|
2013-03-29 17:06:02 +01:00
|
|
|
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
|
|
|
|
2020-01-14 12:35:08 -04:00
|
|
|
import Data.Typeable
|
2020-01-20 15:20:04 -04:00
|
|
|
import qualified Data.Map as M
|
2023-11-01 14:27:22 -04:00
|
|
|
import Data.ByteString (ByteString)
|
2020-01-14 12:35:08 -04:00
|
|
|
|
|
|
|
data EncryptionMethod
|
|
|
|
= NoneEncryption
|
|
|
|
| SharedEncryption
|
|
|
|
| PubKeyEncryption
|
|
|
|
| SharedPubKeyEncryption
|
|
|
|
| HybridEncryption
|
|
|
|
deriving (Typeable, Eq)
|
|
|
|
|
2024-01-12 13:29:34 -04:00
|
|
|
-- A base-64 encoded random value used for encryption.
|
2011-05-21 11:07:08 -04:00
|
|
|
-- XXX ideally, this would be a locked memory region
|
2023-11-01 14:27:22 -04:00
|
|
|
data Cipher = Cipher ByteString | MacOnlyCipher ByteString
|
2011-04-16 16:41:46 -04:00
|
|
|
|
2016-05-10 16:50:31 -04:00
|
|
|
data StorableCipher
|
2023-11-01 14:27:22 -04:00
|
|
|
= EncryptedCipher ByteString EncryptedCipherVariant KeyIds
|
|
|
|
| SharedCipher ByteString
|
|
|
|
| SharedPubKeyCipher ByteString 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
|
2020-01-20 15:20:04 -04: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)
|
|
|
|
]
|