tlv-key-locator.h
1 
21 #ifndef NDN_TLV_KEY_LOCATOR_H
22 #define NDN_TLV_KEY_LOCATOR_H
23 
24 #include "../../key-locator.h"
25 #include "tlv-encoder.h"
26 #include "tlv-decoder.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
38 ndn_Error
39 ndn_encodeTlvKeyLocatorValue(const void *context, struct ndn_TlvEncoder *encoder);
40 
50 ndn_Error
51 ndn_decodeTlvKeyLocator
52  (unsigned int expectedType, struct ndn_KeyLocator *keyLocator,
53  struct ndn_TlvDecoder *decoder);
54 
55 #ifdef __cplusplus
56 }
57 #endif
58 
59 #endif
Copyright (C) 2014-2016 Regents of the University of California.
Definition: tlv-encoder.h:39
An ndn_KeyLocator holds the type of key locator and related data.
Definition: key-types.h:38
Copyright (C) 2014-2016 Regents of the University of California.
Definition: tlv-decoder.h:34