binary-xml-data.h
1 
21 #ifndef NDN_BINARY_XML_DATA_H
22 #define NDN_BINARY_XML_DATA_H
23 
24 #include "../data.h"
25 #include "binary-xml-encoder.h"
26 #include "binary-xml-decoder.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
42 ndn_Error ndn_encodeBinaryXmlData
43  (struct ndn_Data *data, size_t *signedPortionBeginOffset, size_t *signedPortionEndOffset, struct ndn_BinaryXmlEncoder *encoder);
44 
55 ndn_Error ndn_decodeBinaryXmlData
56  (struct ndn_Data *data, size_t *signedPortionBeginOffset, size_t *signedPortionEndOffset, struct ndn_BinaryXmlDecoder *decoder);
57 
58 #ifdef __cplusplus
59 }
60 #endif
61 
62 #endif
Copyright (C) 2013-2015 Regents of the University of California.
Definition: binary-xml-encoder.h:36
Definition: data-types.h:86
Copyright (C) 2013-2015 Regents of the University of California.
Definition: binary-xml-decoder.h:33