Crates.io | macarunes |
lib.rs | macarunes |
version | 0.7.0 |
source | src |
created_at | 2023-09-07 23:20:22.959139 |
updated_at | 2024-11-07 14:02:20.421969 |
description | Macarunes provides an implementation of macaroons. |
homepage | |
repository | https://github.com/rescrv/blue |
max_upload_size | |
id | 966692 |
size | 36,857 |
This library provides an implementation of Macaroons. For an introduction to macaroons, check out the paper, or the Python README.
We rely upon the type system to provide memory safety. Secrets are scrubbed after use, but there's no guarantee the linker won't optimize away such code. Until an end-to-end solution emerges in the Rust compiler, it won't be possible to guarantee secrets don't leak in the presence of memory vulnerability.
This library relies upon the determinism of the protocol buffers code. This is guaranteed by prototk.
Intentionally restrictive language compared to the Python implementation. The only cases you need in the core library are to make exact comparisons (which are born out as format strings), to set an expiration, or to use a third-party caveat that enforces some arbitrary predicate before the discharge macaroon is granted.
This is the algorithm for satisfying third-party secrets:
signature
from the macaroon to which we want to add a third-party
caveat.signature
for a
ThirdPartySecret
.Macaroon.add_third_party(location, identifier, third_party_secret)
.A location is a hint that is not part of the macaroons's signature. The library does this intentionally as the paper suggests that only keys speak.
For that reason, locations should be treated as hints that give a plain-text
description of how to use the endpoint. The location in the macaroon is not
the endpoint for discharge; it's a opaque identifier that the RequestBuilder
will iterate over.
For each third party, a Loader should be developed that negotiates the protocol to get discharge macaroons. A location that's not known to a client cannot be trusted. Given that we have to trust servers that give us macaroons, this is not a compromise or limitation.
Active development.
This library should provide a verifier and a client-side library.
The latest documentation is always available at docs.rs.