forked from openkylin/xmlsec1
80 lines
3.5 KiB
HTML
80 lines
3.5 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
<title>Include files.: XML Security Library Reference Manual</title>
|
||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||
<link rel="home" href="index.html" title="XML Security Library Reference Manual">
|
||
<link rel="up" href="xmlsec-notes-compiling.html" title="Building the application with XML Security Library.">
|
||
<link rel="prev" href="xmlsec-notes-compiling.html" title="Building the application with XML Security Library.">
|
||
<link rel="next" href="xmlsec-notes-compiling-unix.html" title="Compiling and linking on Unix.">
|
||
<meta name="generator" content="GTK-Doc V1.27 (XML mode)">
|
||
<link rel="stylesheet" href="style.css" type="text/css">
|
||
</head>
|
||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||
<td width="100%" align="left" class="shortcuts"></td>
|
||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||
<td><a accesskey="u" href="xmlsec-notes-compiling.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
||
<td><a accesskey="p" href="xmlsec-notes-compiling.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||
<td><a accesskey="n" href="xmlsec-notes-compiling-unix.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||
</tr></table>
|
||
<div class="sect1">
|
||
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
|
||
<a name="xmlsec-notes-include-files"></a>Include files.</h2></div></div></div>
|
||
<p>In order to use XML Security Library an application should include
|
||
one or more of the following files:
|
||
</p>
|
||
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
||
<li class="listitem"><p><font>xmlsec/xmlsec.h</font> -
|
||
XML Security Library initialization and shutdown functions;
|
||
</p></li>
|
||
<li class="listitem"><p><font>xmlsec/xmldsig.h</font> -
|
||
XML Digital Signature functions;</p></li>
|
||
<li class="listitem"><p><font>xmlsec/xmlenc.h</font> -
|
||
XML Encryption functions;</p></li>
|
||
<li class="listitem"><p><font>xmlsec/xmltree.h</font> -
|
||
helper functions for XML documents manipulation;
|
||
</p></li>
|
||
<li class="listitem"><p><font>xmlsec/templates.h</font> -
|
||
helper functions for dynamic XML Digital Signature and
|
||
XML Encryption templates creation;
|
||
</p></li>
|
||
<li class="listitem"><p><font>xmlsec/crypto.h</font> -
|
||
automatic XML Security Crypto Library selection.
|
||
</p></li>
|
||
</ul></div>
|
||
<p>
|
||
</p>
|
||
<p>If necessary, the application should also include LibXML,
|
||
LibXSLT and crypto library header files.
|
||
</p>
|
||
<p>
|
||
</p>
|
||
<div class="example">
|
||
<a name="id-1.2.4.3.4.1"></a><p class="title"><b>Example 1. Example includes file section.</b></p>
|
||
<div class="example-contents"><pre class="programlisting">
|
||
#include <libxml/tree.h>
|
||
#include <libxml/xmlmemory.h>
|
||
#include <libxml/parser.h>
|
||
|
||
#ifndef XMLSEC_NO_XSLT
|
||
#include <libxslt/xslt.h>
|
||
#endif /* XMLSEC_NO_XSLT */
|
||
|
||
#include <xmlsec/xmlsec.h>
|
||
#include <xmlsec/xmltree.h>
|
||
#include <xmlsec/xmldsig.h>
|
||
#include <xmlsec/xmlenc.h>
|
||
#include <xmlsec/templates.h>
|
||
#include <xmlsec/crypto.h>
|
||
</pre></div>
|
||
</div>
|
||
<p><br class="example-break">
|
||
</p>
|
||
</div>
|
||
<div class="footer">
|
||
<hr>Generated by GTK-Doc V1.27</div>
|
||
</body>
|
||
</html>
|