diff options
Diffstat (limited to 'docs/api/xmlsec-notes-new-crypto-skeleton.html')
-rw-r--r-- | docs/api/xmlsec-notes-new-crypto-skeleton.html | 56 |
1 files changed, 36 insertions, 20 deletions
diff --git a/docs/api/xmlsec-notes-new-crypto-skeleton.html b/docs/api/xmlsec-notes-new-crypto-skeleton.html index 979bbe34..87d7c64c 100644 --- a/docs/api/xmlsec-notes-new-crypto-skeleton.html +++ b/docs/api/xmlsec-notes-new-crypto-skeleton.html @@ -36,8 +36,31 @@ .navigation .title { font-size: 200%; }</style> +<style type="text/css"> +table.CALSTABLE > tbody > tr:nth-child(1) > td:nth-child(1) { + width: 20em; +} +.synopsis, .classsynopsis { + background: #eeeeee; + border: solid 1px #aaaaaa; +} +.programlisting { + background: #eeeeee; + border: solid 1px #000000; +} +.navigation { + background: #eeeeee; + border: solid 1px #000000; +} +.navigation a { + color: initial; +} +.navigation a:visited { + color: initial; +} +</style> </head> -<body><table witdh="100%" valign="top"><tr valign="top"> +<body><table width="100%" valign="top"><tr valign="top"> <td valign="top" align="left" width="210"> <img src="../images/logo.gif" alt="XML Security Library" border="0"><p></p> <ul> @@ -78,11 +101,11 @@ </td> <td valign="top"><table width="100%" valign="top"><tr><td valign="top" align="left" id="xmlsecContent"> <table width="100%" class="navigation" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle"> -<td><a accesskey="p" href="xmlsec-notes-new-crypto.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td> -<td><a accesskey="u" href="xmlsec-notes-new-crypto.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td> -<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td> +<td><a accesskey="p" href="xmlsec-notes-new-crypto.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> +<td><a accesskey="u" href="xmlsec-notes-new-crypto.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> +<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <th width="100%" align="center">XML Security Library Reference Manual</th> -<td><a accesskey="n" href="xmlsec-notes-new-crypto-functions.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td> +<td><a accesskey="n" href="xmlsec-notes-new-crypto-functions.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td> </tr></table> <br clear="all"><div class="SECT1"> <h1 class="SECT1"><a name="XMLSEC-NOTES-NEW-CRYPTO-SKELETON">Creating a framework from the skeleton.</a></h1> @@ -95,20 +118,13 @@ <ul> <li> <p> Copy src/skeleton and include/xmlsec/skeleton folders to src/mycrypto and - include/xmlsec/mycrypto folders and remove CVS folders from the result: + include/xmlsec/mycrypto folders: </p> <div class="EXAMPLE"> -<a name="AEN512"></a><p><b>Example 1. Coping skeleton folders.</b></p> +<a name="AEN666"></a><p><b>Example 1. Coping skeleton folders.</b></p> <pre class="PROGRAMLISTING">cd src -cp -r skeleton mycrypto -cd mycrypto -rm -rf CVS -cd ../.. -cd include/xmlsec -cp -r skeleton mycrypto -cd mycrypto -rm -rf CVS -cd ../../.. +cp -r src/skeleton src/mycrypto +cp -r include/xmlsec/skeleton include/xmlsec/mycrypto </pre> </div> </li> @@ -117,7 +133,7 @@ cd ../../.. are different possible cases here): </p> <div class="EXAMPLE"> -<a name="AEN517"></a><p><b>Example 2. Replacing "skeleton" with "mycrypto".</b></p> +<a name="AEN671"></a><p><b>Example 2. Replacing "skeleton" with "mycrypto".</b></p> <pre class="PROGRAMLISTING">for i in `ls include/xmlsec/mycrypto/* src/mycrypto/*`; do echo Processing $i ..; sed 's/skeleton/mycrypto/g' $i | \ @@ -132,7 +148,7 @@ done <p> Add "xmlsec-mycrypto" library to the "include/xmlsec/crypto.h" file: </p> <div class="EXAMPLE"> -<a name="AEN522"></a><p><b>Example 3. Modifying include/xmlsec/crypto.h file.</b></p> +<a name="AEN676"></a><p><b>Example 3. Modifying include/xmlsec/crypto.h file.</b></p> <pre class="PROGRAMLISTING">... #ifdef XMLSEC_CRYPTO_MYCRYPTO #include <xmlsec/mycrypto/app.h> @@ -151,7 +167,7 @@ done files, see win32/README.txt for details): </p> <div class="EXAMPLE"> -<a name="AEN527"></a><p><b>Example 4. Modifying configure.in file.</b></p> +<a name="AEN681"></a><p><b>Example 4. Modifying configure.in file.</b></p> <pre class="PROGRAMLISTING">dnl ========================================================================== dnl See if we can find MyCrypto dnl ========================================================================== @@ -238,7 +254,7 @@ src/mycrypto/Makefile that xmlsec command line utility is linked against xmlsec-mycrypto library): <div class="EXAMPLE"> -<a name="AEN532"></a><p><b>Example 5. Compiling the results.</b></p> +<a name="AEN686"></a><p><b>Example 5. Compiling the results.</b></p> <pre class="PROGRAMLISTING">./autogen.sh --without-openssl --without-nss --without-gnutls --without-gcrypt \ --with-mycrypto=$HOME --disable-tmpl-tests make |