3 synopsis: Haskell implementation of macaroons
5 Hmacaroons is a pure haskell implementation of macaroons. It aims to
6 provide compatibility at a serialized level with the
7 <https://github.com/rescrv/libmacaroons reference implementation> and
8 the <https://github.com/ecordell/pymacaroons python implementation>
10 __WARNING: This library has not been audited by security experts.__
11 __There is no error handling at the moment, everything is silently accepted__
13 It is developed in the purpose of exploration purposes, and would need
14 much more attention if it were to be used in production.
19 == Papers and articles
22 - <http://research.google.com/pubs/pub41892.html Google paper on macaroons>
23 - <https://air.mozilla.org/macaroons-cookies-with-contextual-caveats-for-decentralized-authorization-in-the-cloud/ Macaroons at Mozilla>
24 - <http://hackingdistributed.com/2014/11/23/macaroons-in-hyperdex/ Time for better security in NoSQL>
29 - <https://github.com/rescrv/libmacaroons C>
30 - <https://github.com/nitram509/jmacaroons Java>
31 - <https://github.com/nitram509/macaroons.js Node.js>
32 - <https://github.com/ecordell/pymacaroons Python>
33 - <https://github.com/cryptosphere/rust-macaroons.git Rust>
37 maintainer: julien.tanguy@jhome.fr
38 homepage: https://github.com/jtanguy/hmacaroons
39 bug-reports: https://github.com/jtanguy/hmacaroons/issues
42 extra-source-files: README.md
47 source-repository head
50 location: https://github.com/jtanguy/hmacaroons
53 exposed-modules: Crypto.Macaroon
54 -- Crypto.Macaroon.Binder
55 Crypto.Macaroon.Serializer.Base64
56 Crypto.Macaroon.Verifier
57 other-modules: Crypto.Macaroon.Internal
58 Crypto.Macaroon.Verifier.Internal
59 build-depends: base >=4 && < 5,
63 base64-bytestring >= 1.0,
64 byteable >= 0.1 && <0.2,
66 cryptohash >=0.11 && <0.12,
69 -- cipher-aes >=0.2 && <0.3,
73 default-language: Haskell2010
76 default-language: Haskell2010
77 type: exitcode-stdio-1.0
78 hs-source-dirs: src, bench
81 build-depends: base >= 4 && <5,
84 base64-bytestring >= 1.0,
85 byteable >= 0.1 && <0.2,
87 cryptohash >=0.11 && <0.12,
88 -- cipher-aes >=0.2 && <0.3,
95 default-language: Haskell2010
96 type: exitcode-stdio-1.0
97 hs-source-dirs: src, test
99 build-depends: base >= 4 && <5,
102 base64-bytestring >= 1.0,
103 byteable >= 0.1 && <0.2,
105 cryptohash >=0.11 && <0.12,
110 tasty-quickcheck >= 0.8,