Vitaly Buka | 45dc9df | 2015-12-07 21:30:19 -0800 | [diff] [blame] | 1 | // 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 | |
| 14 | bool uw_macaroon_context_get_(UwMacaroonCaveatType type, |
| 15 | const uint8_t** context, size_t* context_len); |
| 16 | |
| 17 | #endif // UW_LIBUWEAVE_SRC_MACAROON_CONTEXT_ |