module Jose.Jws
( hmacEncode
, hmacDecode
, rsaEncode
, rsaDecode
)
where
import Control.Applicative
import Control.Monad (unless)
import Crypto.PubKey.RSA (PrivateKey(..), PublicKey(..), generateBlinder)
import Crypto.Random (CPRG)
import Data.ByteString (ByteString)
import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as BC
import Jose.Types
import qualified Jose.Internal.Base64 as B64
import Jose.Internal.Crypto
import Jose.Jwa
hmacEncode :: JwsAlg
-> ByteString
-> ByteString
-> Either JwtError ByteString
hmacEncode a key payload = let st = sigTarget a payload
in (\mac -> B.concat [st, ".", B64.encode mac]) <$> hmacSign a key st
hmacDecode :: ByteString
-> ByteString
-> Either JwtError Jws
hmacDecode key = decode (`hmacVerify` key)
rsaEncode :: CPRG g
=> g
-> JwsAlg
-> PrivateKey
-> ByteString
-> (Either JwtError ByteString, g)
rsaEncode rng a pk payload = (sign blinder, rng')
where
(blinder, rng') = generateBlinder rng (public_n $ private_pub pk)
st = sigTarget a payload
sign b = case rsaSign (Just b) a pk st of
Right sig -> Right $ B.concat [st, ".", B64.encode sig]
err -> err
rsaDecode :: PublicKey
-> ByteString
-> Either JwtError Jws
rsaDecode key = decode (`rsaVerify` key)
sigTarget :: JwsAlg -> ByteString -> ByteString
sigTarget a payload = B.intercalate "." $ map B64.encode [encodeHeader $ defJwsHdr {jwsAlg = a}, payload]
type JwsVerifier = JwsAlg -> ByteString -> ByteString -> Bool
decode :: JwsVerifier -> ByteString -> Either JwtError Jws
decode verify jwt = do
unless (BC.count '.' jwt == 2) $ Left $ BadDots 2
let (hdrPayload, sig) = spanEndDot jwt
sigBytes <- B64.decode sig
[h, payload] <- mapM B64.decode $ BC.split '.' hdrPayload
hdr <- case parseHeader h of
Right (JwsH jwsHdr) -> return jwsHdr
_ -> Left BadHeader
if verify (jwsAlg hdr) hdrPayload sigBytes
then Right (hdr, payload)
else Left BadSignature
where
spanEndDot bs = let (toDot, end) = BC.spanEnd (/= '.') bs
in (B.init toDot, end)