]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - README.md
Merge pull request #5 from gitter-badger/gitter-badge
[github/fretlink/hmacaroons.git] / README.md
1 Macaroons: Pure haskell implementation of macaroons [![Build Status](https://travis-ci.org/jtanguy/hmacaroons.svg?branch=master)](https://travis-ci.org/jtanguy/hmacaroons)
2 ===================================================
3
4 [![Join the chat at https://gitter.im/jtanguy/hmacaroons](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jtanguy/hmacaroons?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5
6 Macaroons is a pure haskell implementation of macaroons. It aims to provide
7 compatibility at a serialized level with the [reference implementation](https://github.com/rescrv/libmacaroons)
8 and the [python implementation](https://github.com/ecordell/pymacaroons)
9
10 **WARNING: This library has not been audited by security experts.**
11 **There is no error handling at the moment, everyhting is silently accepted**
12
13 It is developed in the purpose of exploration purposes, and would need much
14 more attention if it were to be used in production.
15
16 References
17 ==========
18
19 Papers and articles
20 -------------------
21
22 - [Google paper on macaroons](http://research.google.com/pubs/pub41892.html)
23 - [Macaroons at Mozilla](https://air.mozilla.org/macaroons-cookies-with-contextual-caveats-for-decentralized-authorization-in-the-cloud/)
24 - [Time for better security in NoSQL](http://hackingdistributed.com/2014/11/23/macaroons-in-hyperdex/)
25
26 Implementations
27 ---------------
28
29 - [C](https://github.com/rescrv/libmacaroons)
30 - [Java](https://github.com/nitram509/jmacaroons)
31 - [Node.js](https://github.com/nitram509/macaroons.js)
32 - [Python](https://github.com/ecordell/pymacaroons)
33 - [Rust](https://github.com/cryptosphere/rust-macaroons.git)