blob: 8522b69a8eac8b8b72ff8848f81e40055db5e224 [file] [log] [blame]
Vitaly Buka45dc9df2015-12-07 21:30:19 -08001// Copyright 2015 The Weave Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef UW_LIBUWEAVE_SRC_MACAROON_CONTEXT_
6#define UW_LIBUWEAVE_SRC_MACAROON_CONTEXT_
7
8#include <stdbool.h>
9#include <stddef.h>
10#include <stdint.h>
11
12#include "src/macaroon_caveat.h"
13
14bool uw_macaroon_context_get_(UwMacaroonCaveatType type,
15 const uint8_t** context, size_t* context_len);
16
17#endif // UW_LIBUWEAVE_SRC_MACAROON_CONTEXT_