2011-04-16 20:41:46 +00:00
|
|
|
{- git-annex crypto types
|
|
|
|
-
|
2012-04-29 18:02:18 +00:00
|
|
|
- Copyright 2011-2012 Joey Hess <joey@kitenet.net>
|
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
|
|
|
|
|
2013-03-29 16:06:02 +00:00
|
|
|
import qualified Data.ByteString.Lazy as L
|
|
|
|
import Data.Digest.Pure.SHA
|
|
|
|
|
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 02:18:33 +00:00
|
|
|
data EncryptedCipherVariant = HybridCipher | PubKeyCipher
|
|
|
|
deriving (Ord, Eq)
|
2013-03-29 16:06:02 +00:00
|
|
|
|
|
|
|
{- File names are (client-side) MAC'ed on special remotes.
|
|
|
|
- The chosen MAC algorithm needs to be same for all files stored on the
|
|
|
|
- remote.
|
|
|
|
-}
|
|
|
|
data Mac = HmacSha1 | HmacSha224 | HmacSha256 | HmacSha384 | HmacSha512
|
|
|
|
deriving (Eq)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
calcMac
|
|
|
|
:: Mac -- ^ MAC
|
|
|
|
-> L.ByteString -- ^ secret key
|
|
|
|
-> L.ByteString -- ^ message
|
|
|
|
-> String -- ^ MAC'ed message, in hexadecimals
|
|
|
|
calcMac mac = case mac of
|
|
|
|
HmacSha1 -> showDigest $* hmacSha1
|
|
|
|
HmacSha224 -> showDigest $* hmacSha224
|
|
|
|
HmacSha256 -> showDigest $* hmacSha256
|
|
|
|
HmacSha384 -> showDigest $* hmacSha384
|
|
|
|
HmacSha512 -> showDigest $* hmacSha512
|
|
|
|
where
|
|
|
|
($*) g f x y = g $ f x y
|