]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - src/Crypto/Macaroon/Internal.hs
Change Eq instances
[github/fretlink/hmacaroons.git] / src / Crypto / Macaroon / Internal.hs
CommitLineData
f6781456
JT
1{-# LANGUAGE OverloadedStrings #-}
2{-|
3Module : Crypto.Macaroon.Internal
4Copyright : (c) 2015 Julien Tanguy
5License : BSD3
6
7Maintainer : julien.tanguy@jhome.fr
8Stability : experimental
9Portability : portable
10
11
12Internal representation of a macaroon
13-}
14module Crypto.Macaroon.Internal where
15
16
17import Control.DeepSeq
18import Crypto.Cipher.AES
19import Crypto.Hash
20import Data.Byteable
21import qualified Data.ByteString as BS
22import qualified Data.ByteString.Base64 as B64
23import qualified Data.ByteString.Char8 as B8
f6781456 24import Data.Hex
2aede11a 25import Data.List
f6781456
JT
26
27-- |Type alias for Macaroons and Caveat keys and identifiers
28type Key = BS.ByteString
29
1971e224 30-- |Type alias for Macaroons and Caveat locations
f6781456
JT
31type Location = BS.ByteString
32
1971e224 33-- |Type alias for Macaroons signatures
f6781456
JT
34type Sig = BS.ByteString
35
36-- | Main structure of a macaroon
37data Macaroon = MkMacaroon { location :: Location
38 -- ^ Target location
39 , identifier :: Key
40 -- ^ Macaroon Identifier
41 , caveats :: [Caveat]
42 -- ^ List of caveats
43 , signature :: Sig
44 -- ^ Macaroon HMAC signature
30c4b925
JT
45 }
46
47instance Eq Macaroon where
48 (MkMacaroon l1 i1 c1 s1) == (MkMacaroon l2 i2 c2 s2) =
49 (l1 `constEqBytes` l2) &&!
50 (i1 `constEqBytes` i2) &&!
51 (c1 == c2) &&!
52 (s1 `constEqBytes` s2)
53
f6781456 54
1971e224 55-- | show instance conforming to the @inspect@ "specification"
2aede11a
JT
56instance Show Macaroon where
57 -- We use intercalate because unlines would add a trailing newline
58 show (MkMacaroon l i c s) = intercalate "\n" [
59 "location " ++ B8.unpack l
60 , "identifier " ++ B8.unpack i
61 , concatMap show c
62 , "signature " ++ B8.unpack (hex s)
63 ]
f6781456 64
1971e224 65-- | NFData instance for use in the benchmark
f6781456
JT
66instance NFData Macaroon where
67 rnf (MkMacaroon loc ident cavs sig) = rnf loc `seq` rnf ident `seq` rnf cavs `seq` rnf sig
68
69
70-- | Caveat structure
71data Caveat = MkCaveat { cid :: Key
72 -- ^ Caveat identifier
73 , vid :: Key
74 -- ^ Caveat verification key identifier
75 , cl :: Location
76 -- ^ Caveat target location
30c4b925 77 }
f6781456 78
30c4b925
JT
79instance Eq Caveat where
80 (MkCaveat c1 v1 l1) == (MkCaveat c2 v2 l2) =
81 (c1 `constEqBytes` c2) &&!
82 (v1 `constEqBytes` v2) &&!
83 (l1 `constEqBytes` l2)
f6781456 84
1971e224 85-- | show instance conforming to the @inspect@ "specification"
2aede11a
JT
86instance Show Caveat where
87 show (MkCaveat c v l) | v == BS.empty = "cid " ++ B8.unpack c
88 | otherwise = unlines [ "cid " ++ B8.unpack c
89 , "vid " ++ B8.unpack v
90 , "cl " ++ B8.unpack l
91 ]
92
93
1971e224 94-- | NFData instance for use in the benchmark
f6781456
JT
95instance NFData Caveat where
96 rnf (MkCaveat cid vid cl) = rnf cid `seq` rnf vid `seq` rnf cl
97
1971e224
JT
98-- | Primitive to add a First or Third party caveat to a macaroon
99-- For internal use only
f6781456
JT
100addCaveat :: Location
101 -> Key
102 -> Key
103 -> Macaroon
104 -> Macaroon
105addCaveat loc cid vid m = m { caveats = cavs ++ [cav'], signature = sig}
106 where
107 cavs = caveats m
108 cav' = MkCaveat cid vid loc
2aede11a 109 sig = toBytes (hmac (signature m) (BS.append vid cid) :: HMAC SHA256)
f6781456 110
30c4b925
JT
111-- | Utility non-short circuiting '&&' function.
112(&&!) :: Bool -> Bool -> Bool
113True &&! True = True
114True &&! False = False
115False &&! True = False
116False &&! False = False
117