Git init
[external/xmlsec1.git] / docs / api / xmlsec-notes-keys-mngr-verify-decrypt.html
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
4 <title>Using keys manager for verification/decryption.</title>
5 <meta name="GENERATOR" content="Modular DocBook HTML Stylesheet Version 1.79">
6 <link rel="HOME" title="XML Security Library Reference Manual" href="index.html">
7 <link rel="UP" title="Keys manager." href="xmlsec-notes-keysmngr.html">
8 <link rel="PREVIOUS" title="Using keys manager for signatures/encryption." href="xmlsec-notes-keys-manager-sign-enc.html">
9 <link rel="NEXT" title="Implementing a custom keys store." href="xmlsec-notes-custom-keys-store.html">
10 <style type="text/css">.synopsis, .classsynopsis {
11     background: #eeeeee;
12     border: solid 1px #aaaaaa;
13     padding: 0.5em;
14 }
15 .programlisting {
16     background: #eeeeff;
17     border: solid 1px #aaaaff;
18     padding: 0.5em;
19 }
20 .variablelist {
21     padding: 4px;
22     margin-left: 3em;
23 }
24 .navigation {
25     background: #ffeeee;
26     border: solid 1px #ffaaaa;
27     margin-top: 0.5em;
28     margin-bottom: 0.5em;
29 }
30 .navigation a {
31     color: #770000;
32 }
33 .navigation a:visited {
34     color: #550000;
35 }
36 .navigation .title {
37     font-size: 200%;
38 }</style>
39 </head>
40 <body><table witdh="100%" valign="top"><tr valign="top">
41 <td valign="top" align="left" width="210">
42 <img src="../images/logo.gif" alt="XML Security Library" border="0"><p></p>
43 <ul>
44 <li><a href="../index.html">Home</a></li>
45 <li><a href="../download.html">Download</a></li>
46 <li><a href="../news.html">News</a></li>
47 <li><a href="../documentation.html">Documentation</a></li>
48 <ul>
49 <li><a href="../faq.html">FAQ</a></li>
50 <li><a href="../api/xmlsec-notes.html">Tutorial</a></li>
51 <li><a href="../api/xmlsec-reference.html">API reference</a></li>
52 <li><a href="../api/xmlsec-examples.html">Examples</a></li>
53 </ul>
54 <li><a href="../xmldsig.html">XML Digital Signature</a></li>
55 <ul><li><a href="http://www.aleksey.com/xmlsec/xmldsig-verifier.html">Online Verifier</a></li></ul>
56 <li><a href="../xmlenc.html">XML Encryption</a></li>
57 <li><a href="../c14n.html">XML Canonicalization</a></li>
58 <li><a href="../bugs.html">Reporting Bugs</a></li>
59 <li><a href="http://www.aleksey.com/pipermail/xmlsec">Mailing list</a></li>
60 <li><a href="../related.html">Related</a></li>
61 <li><a href="../authors.html">Authors</a></li>
62 </ul>
63 <table width="100%">
64 <tr>
65 <td width="15"></td>
66 <td><a href="http://xmlsoft.org/"><img src="../images/libxml2-logo.png" alt="LibXML2" border="0"></a></td>
67 </tr>
68 <tr>
69 <td width="15"></td>
70 <td><a href="http://xmlsoft.org/XSLT"><img src="../images/libxslt-logo.png" alt="LibXSLT" border="0"></a></td>
71 </tr>
72 <tr>
73 <td width="15"></td>
74 <td><a href="http://www.openssl.org/"><img src="../images/openssl-logo.png" alt="OpenSSL" border="0"></a></td>
75 </tr>
76 <!--Links - start--><!--Links - end-->
77 </table>
78 </td>
79 <td valign="top"><table width="100%" valign="top"><tr><td valign="top" align="left" id="xmlsecContent">
80 <table width="100%" class="navigation" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
81 <td><a accesskey="p" href="xmlsec-notes-keys-manager-sign-enc.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
82 <td><a accesskey="u" href="xmlsec-notes-keysmngr.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
83 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
84 <th width="100%" align="center">XML Security Library Reference Manual</th>
85 <td><a accesskey="n" href="xmlsec-notes-custom-keys-store.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
86 </tr></table>
87 <br clear="all"><div class="SECT1">
88 <h1 class="SECT1"><a name="XMLSEC-NOTES-KEYS-MNGR-VERIFY-DECRYPT">Using keys manager for verification/decryption.</a></h1>
89 <p>If more than one key could be used for signature or encryption,
90         then using <code class="STRUCTFIELD">signKey</code> member of 
91         <a href="xmlsec-xmldsig.html#XMLSECDSIGCTX">xmlSecDSigCtx</a> structure or 
92         <code class="STRUCTFIELD">encKey</code> member of 
93         <a href="xmlsec-xmlenc.html#XMLSECENCCTX">xmlSecEncCtx</a> structure 
94         is not possible. Instead, the application should load known keys in 
95         the keys manager and use &lt;dsig:KeyName/&gt; element to specify 
96         the key name.
97         </p>
98 <p>          </p>
99 <div class="EXAMPLE">
100 <a name="AEN391"></a><p><b>Example 3. Initializing keys manager and loading DES keys from binary files.</b></p>
101 <pre class="PROGRAMLISTING">/**
102  * load_des_keys:
103  * @files:              the list of filenames.
104  * @files_size:         the number of filenames in #files.
105  *
106  * Creates default keys manager and load DES keys from #files in it.
107  * The caller is responsible for destroing returned keys manager using
108  * @xmlSecKeysMngrDestroy.
109  *
110  * Returns the pointer to newly created keys manager or NULL if an error
111  * occurs.
112  */
113 xmlSecKeysMngrPtr 
114 load_des_keys(char** files, int files_size) {
115     xmlSecKeysMngrPtr mngr;
116     xmlSecKeyPtr key;
117     int i;
118     
119     assert(files);
120     assert(files_size &gt; 0);
121     
122     /* create and initialize keys manager, we use a default list based
123      * keys manager, implement your own xmlSecKeysStore klass if you need
124      * something more sophisticated 
125      */
126     mngr = xmlSecKeysMngrCreate();
127     if(mngr == NULL) {
128         fprintf(stderr, "Error: failed to create keys manager.\n");
129         return(NULL);
130     }
131     if(xmlSecCryptoAppDefaultKeysMngrInit(mngr) &lt; 0) {
132         fprintf(stderr, "Error: failed to initialize keys manager.\n");
133         xmlSecKeysMngrDestroy(mngr);
134         return(NULL);
135     }    
136     
137     for(i = 0; i &lt; files_size; ++i) {
138         assert(files[i]);
139
140         /* load DES key */
141         key = xmlSecKeyReadBinaryFile(xmlSecKeyDataDesId, files[i]);
142         if(key == NULL) {
143             fprintf(stderr,"Error: failed to load des key from binary file \"%s\"\n", files[i]);
144             xmlSecKeysMngrDestroy(mngr);
145             return(NULL);
146         }
147
148         /* set key name to the file name, this is just an example! */
149         if(xmlSecKeySetName(key, BAD_CAST files[i]) &lt; 0) {
150             fprintf(stderr,"Error: failed to set key name for key from \"%s\"\n", files[i]);
151             xmlSecKeyDestroy(key);
152             xmlSecKeysMngrDestroy(mngr);
153             return(NULL);
154         }
155         
156         /* add key to keys manager, from now on keys manager is responsible 
157          * for destroying key 
158          */
159         if(xmlSecCryptoAppDefaultKeysMngrAdoptKey(mngr, key) &lt; 0) {
160             fprintf(stderr,"Error: failed to add key from \"%s\" to keys manager\n", files[i]);
161             xmlSecKeyDestroy(key);
162             xmlSecKeysMngrDestroy(mngr);
163             return(NULL);
164         }
165     }
166
167     return(mngr);
168 }
169                 </pre>
170 <p><a href="xmlsec-decrypt-with-keys-mngr.html#XMLSEC-EXAMPLE-DECRYPT2">Full program listing</a></p>
171 </div>
172         </div>
173 <table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="2"><tr valign="middle">
174 <td align="left"><a accesskey="p" href="xmlsec-notes-keys-manager-sign-enc.html"><b>&lt;&lt;&lt; Using keys manager for signatures/encryption.</b></a></td>
175 <td align="right"><a accesskey="n" href="xmlsec-notes-custom-keys-store.html"><b>Implementing a custom keys store. &gt;&gt;&gt;</b></a></td>
176 </tr></table>
177 </td></tr></table></td>
178 </tr></table></body>
179 </html>