diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2022-05-26 13:58:07 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2022-05-26 13:58:07 +0200 |
commit | fc6cf6169868e60c189e4b243330c3717ff159f3 (patch) | |
tree | 3f6dea9c1420e23756257b5abea27ec9ed92d58a /overlays/spm/lib/Crypto | |
parent | 84f2affd66a0ff3947b91a30308cb8e6a8ff7594 (diff) | |
download | nixos-fc6cf6169868e60c189e4b243330c3717ff159f3.tar nixos-fc6cf6169868e60c189e4b243330c3717ff159f3.tar.gz nixos-fc6cf6169868e60c189e4b243330c3717ff159f3.tar.bz2 nixos-fc6cf6169868e60c189e4b243330c3717ff159f3.tar.xz nixos-fc6cf6169868e60c189e4b243330c3717ff159f3.zip |
...
Diffstat (limited to 'overlays/spm/lib/Crypto')
-rw-r--r-- | overlays/spm/lib/Crypto/JWT/Instances.hs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/overlays/spm/lib/Crypto/JWT/Instances.hs b/overlays/spm/lib/Crypto/JWT/Instances.hs new file mode 100644 index 00000000..fa3c83b0 --- /dev/null +++ b/overlays/spm/lib/Crypto/JWT/Instances.hs | |||
@@ -0,0 +1,22 @@ | |||
1 | {-# OPTIONS_GHC -fno-warn-orphans #-} | ||
2 | |||
3 | module Crypto.JWT.Instances () where | ||
4 | |||
5 | import Prelude | ||
6 | import Control.Arrow | ||
7 | |||
8 | import Crypto.JWT | ||
9 | import Servant.API.ContentTypes | ||
10 | |||
11 | |||
12 | instance MimeRender PlainText SignedJWT where | ||
13 | mimeRender _ = encodeCompact | ||
14 | |||
15 | instance MimeRender OctetStream SignedJWT where | ||
16 | mimeRender _ = encodeCompact | ||
17 | |||
18 | instance MimeUnrender PlainText SignedJWT where | ||
19 | mimeUnrender _ = left (show @Error) . decodeCompact | ||
20 | |||
21 | instance MimeUnrender OctetStream SignedJWT where | ||
22 | mimeUnrender _ = left (show @Error) . decodeCompact | ||