tlv-signature-info.h
1 
21 #ifndef NDN_TLV_SIGNATURE_INFO_H
22 #define NDN_TLV_SIGNATURE_INFO_H
23 
24 #include "../../data.h"
25 #include "tlv-encoder.h"
26 #include "tlv-decoder.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
39 ndn_Error
40 ndn_encodeTlvSignatureInfo
41  (const struct ndn_Signature *signatureInfo, struct ndn_TlvEncoder *encoder);
42 
51 ndn_Error
52 ndn_decodeTlvSignatureInfo
53  (struct ndn_Signature *signatureInfo, 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
Copyright (C) 2014-2016 Regents of the University of California.
Definition: tlv-decoder.h:34
An ndn_Signature struct holds the signature bits and other info representing the signature in a data ...
Definition: data-types.h:59