summaryrefslogtreecommitdiff
path: root/docs/api/xmlsec-notes-include-files.html
blob: f04a59897097d9ea5df49726f04ccf6f8bac92ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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 &lt;libxml/tree.h&gt;
#include &lt;libxml/xmlmemory.h&gt;
#include &lt;libxml/parser.h&gt;

#ifndef XMLSEC_NO_XSLT
#include &lt;libxslt/xslt.h&gt;
#endif /* XMLSEC_NO_XSLT */

#include &lt;xmlsec/xmlsec.h&gt;
#include &lt;xmlsec/xmltree.h&gt;
#include &lt;xmlsec/xmldsig.h&gt;
#include &lt;xmlsec/xmlenc.h&gt;
#include &lt;xmlsec/templates.h&gt;
#include &lt;xmlsec/crypto.h&gt;
	    </pre></div>
</div>
<p><br class="example-break">
	</p>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.27</div>
</body>
</html>