c14n

Name

c14n -- 

Synopsis



int         xmlC14NDocSaveTo                (xmlDocPtr doc,
                                             xmlNodeSetPtr nodes,
                                             int exclusive,
                                             xmlChar **inclusive_ns_prefixes,
                                             int with_comments,
                                             xmlOutputBufferPtr buf);
int         xmlC14NDocDumpMemory            (xmlDocPtr doc,
                                             xmlNodeSetPtr nodes,
                                             int exclusive,
                                             xmlChar **inclusive_ns_prefixes,
                                             int with_comments,
                                             xmlChar **doc_txt_ptr);
int         xmlC14NDocSave                  (xmlDocPtr doc,
                                             xmlNodeSetPtr nodes,
                                             int exclusive,
                                             xmlChar **inclusive_ns_prefixes,
                                             int with_comments,
                                             const char *filename,
                                             int compression);

Description

Details

xmlC14NDocSaveTo ()

int         xmlC14NDocSaveTo                (xmlDocPtr doc,
                                             xmlNodeSetPtr nodes,
                                             int exclusive,
                                             xmlChar **inclusive_ns_prefixes,
                                             int with_comments,
                                             xmlOutputBufferPtr buf);

Dumps the canonized image of given XML document into the provided buffer. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)


xmlC14NDocDumpMemory ()

int         xmlC14NDocDumpMemory            (xmlDocPtr doc,
                                             xmlNodeSetPtr nodes,
                                             int exclusive,
                                             xmlChar **inclusive_ns_prefixes,
                                             int with_comments,
                                             xmlChar **doc_txt_ptr);

Dumps the canonized image of given XML document into memory. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)


xmlC14NDocSave ()

int         xmlC14NDocSave                  (xmlDocPtr doc,
                                             xmlNodeSetPtr nodes,
                                             int exclusive,
                                             xmlChar **inclusive_ns_prefixes,
                                             int with_comments,
                                             const char *filename,
                                             int compression);

Dumps the canonized image of given XML document into the file. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)