You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2016/07/10 20:00:17 UTC

svn commit: r1752105 [1/9] - in /httpd/httpd/trunk/docs: man/ manual/ manual/mod/

Author: nd
Date: Sun Jul 10 20:00:17 2016
New Revision: 1752105

URL: http://svn.apache.org/viewvc?rev=1752105&view=rev
Log:
update transformation

Added:
    httpd/httpd/trunk/docs/manual/mod/mod_crypto.html   (with props)
    httpd/httpd/trunk/docs/manual/mod/mod_crypto.html.en   (with props)
Modified:
    httpd/httpd/trunk/docs/man/htdbm.1
    httpd/httpd/trunk/docs/manual/convenience.map
    httpd/httpd/trunk/docs/manual/expr.html.en
    httpd/httpd/trunk/docs/manual/expr.html.fr
    httpd/httpd/trunk/docs/manual/expr.xml.fr
    httpd/httpd/trunk/docs/manual/expr.xml.meta
    httpd/httpd/trunk/docs/manual/mod/allmodules.xml.de
    httpd/httpd/trunk/docs/manual/mod/allmodules.xml.es
    httpd/httpd/trunk/docs/manual/mod/allmodules.xml.fr
    httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ja
    httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ko
    httpd/httpd/trunk/docs/manual/mod/allmodules.xml.tr
    httpd/httpd/trunk/docs/manual/mod/allmodules.xml.zh-cn
    httpd/httpd/trunk/docs/manual/mod/directives.html.de
    httpd/httpd/trunk/docs/manual/mod/directives.html.en
    httpd/httpd/trunk/docs/manual/mod/directives.html.es
    httpd/httpd/trunk/docs/manual/mod/directives.html.fr
    httpd/httpd/trunk/docs/manual/mod/directives.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/directives.html.ko.euc-kr
    httpd/httpd/trunk/docs/manual/mod/directives.html.tr.utf8
    httpd/httpd/trunk/docs/manual/mod/directives.html.zh-cn.utf8
    httpd/httpd/trunk/docs/manual/mod/index.html.de
    httpd/httpd/trunk/docs/manual/mod/index.html.en
    httpd/httpd/trunk/docs/manual/mod/index.html.es
    httpd/httpd/trunk/docs/manual/mod/index.html.fr
    httpd/httpd/trunk/docs/manual/mod/index.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/index.html.ko.euc-kr
    httpd/httpd/trunk/docs/manual/mod/index.html.tr.utf8
    httpd/httpd/trunk/docs/manual/mod/index.html.zh-cn.utf8
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.de
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.en
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.es
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.ko.euc-kr
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.tr.utf8
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.zh-cn.utf8
    httpd/httpd/trunk/docs/manual/sitemap.html.de
    httpd/httpd/trunk/docs/manual/sitemap.html.en
    httpd/httpd/trunk/docs/manual/sitemap.html.es
    httpd/httpd/trunk/docs/manual/sitemap.html.fr
    httpd/httpd/trunk/docs/manual/sitemap.html.ja.utf8
    httpd/httpd/trunk/docs/manual/sitemap.html.ko.euc-kr
    httpd/httpd/trunk/docs/manual/sitemap.html.tr.utf8
    httpd/httpd/trunk/docs/manual/sitemap.html.zh-cn.utf8

Modified: httpd/httpd/trunk/docs/man/htdbm.1
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/man/htdbm.1?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/man/htdbm.1 (original)
+++ httpd/httpd/trunk/docs/man/htdbm.1 Sun Jul 10 20:00:17 2016
@@ -19,7 +19,7 @@
 .el .ne 3
 .IP "\\$1" \\$2
 ..
-.TH "HTDBM" 1 "2016-06-07" "Apache HTTP Server" "htdbm"
+.TH "HTDBM" 1 "2016-07-10" "Apache HTTP Server" "htdbm"
 
 .SH NAME
 htdbm \- Manipulate DBM password databases
@@ -157,6 +157,20 @@ Creates a new file and stores a record i
 .PP
 Encrypts the password from the command line (Pwd4Steve) using the MD5 algorithm, and stores it in the specified file\&.
  
+.PP
+To convert an existing text file htpasswd-generated password file to a dbm file, use awk to feed each line of that file into htdbm:
+ 
+.nf
+
+      htdbm -cbp passwords\&.dbm bogus bogus
+      awk ‘BEGIN { FS=”:” }; {system (“htdbm -bp passwords\&.dbm ” $1 ” ” $2)}’ passwords
+      htdbm -x bogus
+    
+.fi
+ 
+.PP
+The first line creates a new password database with a temporary placeholder entry, and the thrid line removes that placeholder\&.
+ 
 .SH "SECURITY CONSIDERATIONS"
  
 .PP

Modified: httpd/httpd/trunk/docs/manual/convenience.map
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/convenience.map?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/convenience.map (original)
+++ httpd/httpd/trunk/docs/manual/convenience.map Sun Jul 10 20:00:17 2016
@@ -176,6 +176,11 @@ cookiename	mod/mod_usertrack.html#cookie
 cookiestyle	mod/mod_usertrack.html#cookiestyle
 cookietracking	mod/mod_usertrack.html#cookietracking
 coredumpdirectory	mod/mpm_common.html#coredumpdirectory
+cryptocipher	mod/mod_crypto.html#cryptocipher
+cryptodriver	mod/mod_crypto.html#cryptodriver
+cryptoiv	mod/mod_crypto.html#cryptoiv
+cryptokey	mod/mod_crypto.html#cryptokey
+cryptosize	mod/mod_crypto.html#cryptosize
 ctauditstorage	mod/mod_ssl_ct.html#ctauditstorage
 ctlogclient	mod/mod_ssl_ct.html#ctlogclient
 ctlogconfigdb	mod/mod_ssl_ct.html#ctlogconfigdb

Modified: httpd/httpd/trunk/docs/manual/expr.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/expr.html.en?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/expr.html.en (original)
+++ httpd/httpd/trunk/docs/manual/expr.html.en Sun Jul 10 20:00:17 2016
@@ -46,7 +46,7 @@
 <li><img alt="" src="./images/down.gif" /> <a href="#other">Other</a></li>
 <li><img alt="" src="./images/down.gif" /> <a href="#sslrequire">Comparison with SSLRequire</a></li>
 <li><img alt="" src="./images/down.gif" /> <a href="#compatibility">Version History</a></li>
-</ul><h3>See also</h3><ul class="seealso"><li><code class="directive"><a href="./mod/core.html#if">&lt;If&gt;</a></code></li><li><code class="directive"><a href="./mod/core.html#elseif">&lt;ElseIf&gt;</a></code></li><li><code class="directive"><a href="./mod/core.html#else">&lt;Else&gt;</a></code></li><li><code class="directive"><a href="./mod/core.html#errordocument">ErrorDocument</a></code></li><li><code class="directive"><a href="./mod/mod_alias.html#alias">Alias</a></code></li><li><code class="directive"><a href="./mod/mod_alias.html#scriptalias">ScriptAlias</a></code></li><li><code class="directive"><a href="./mod/mod_alias.html#redirect">Redirect</a></code></li><li><code class="directive"><a href="./mod/mod_auth_basic.html#authbasicfake">AuthBasicFake</a></code></li><li><code class="directive"><a href="./mod/mod_auth_form.html#authformloginrequiredlocation">AuthFormLoginRequiredLocation</a></code></li><li><code class="directive"><a href="./mod/mod_auth_form.html#authformlogins
 uccesslocation">AuthFormLoginSuccessLocation</a></code></li><li><code class="directive"><a href="./mod/mod_auth_form.html#authformlogoutlocation">AuthFormLogoutLocation</a></code></li><li><code class="directive"><a href="./mod/mod_authn_core.html#authname">AuthName</a></code></li><li><code class="directive"><a href="./mod/mod_authn_core.html#authtype">AuthType</a></code></li><li><code class="directive"><a href="./mod/mod_rewrite.html#rewritecond">RewriteCond</a></code></li><li><code class="directive"><a href="./mod/mod_setenvif.html#setenvifexpr">SetEnvIfExpr</a></code></li><li><code class="directive"><a href="./mod/mod_headers.html#header">Header</a></code></li><li><code class="directive"><a href="./mod/mod_headers.html#requestheader">RequestHeader</a></code></li><li><code class="directive"><a href="./mod/mod_filter.html#filterprovider">FilterProvider</a></code></li><li><a href="mod/mod_authz_core.html#reqexpr">Require expr</a></li><li><a href="mod/mod_authnz_ldap.html#requser">Req
 uire ldap-user</a></li><li><a href="mod/mod_authnz_ldap.html#reqgroup">Require ldap-group</a></li><li><a href="mod/mod_authnz_ldap.html#reqdn">Require ldap-dn</a></li><li><a href="mod/mod_authnz_ldap.html#reqattribute">Require ldap-attribute</a></li><li><a href="mod/mod_authnz_ldap.html#reqfilter">Require ldap-filter</a></li><li><a href="mod/mod_authnz_ldap.html#reqsearch">Require ldap-search</a></li><li><a href="mod/mod_authz_dbd.html#reqgroup">Require dbd-group</a></li><li><a href="mod/mod_authz_dbm.html#reqgroup">Require dbm-group</a></li><li><a href="mod/mod_authz_groupfile.html#reqgroup">Require group</a></li><li><a href="mod/mod_authz_host.html#reqhost">Require host</a></li><li><code class="directive"><a href="./mod/mod_ssl.html#sslrequire">SSLRequire</a></code></li><li><code class="directive"><a href="./mod/mod_log_debug.html#logmessage">LogMessage</a></code></li><li><code class="module"><a href="./mod/mod_include.html">mod_include</a></code></li><li><a href="#comments_sectio
 n">Comments</a></li></ul></div>
+</ul><h3>See also</h3><ul class="seealso"><li><code class="directive"><a href="./mod/core.html#if">&lt;If&gt;</a></code></li><li><code class="directive"><a href="./mod/core.html#elseif">&lt;ElseIf&gt;</a></code></li><li><code class="directive"><a href="./mod/core.html#else">&lt;Else&gt;</a></code></li><li><code class="directive"><a href="./mod/core.html#errordocument">ErrorDocument</a></code></li><li><code class="directive"><a href="./mod/mod_alias.html#alias">Alias</a></code></li><li><code class="directive"><a href="./mod/mod_alias.html#scriptalias">ScriptAlias</a></code></li><li><code class="directive"><a href="./mod/mod_alias.html#redirect">Redirect</a></code></li><li><code class="directive"><a href="./mod/mod_auth_basic.html#authbasicfake">AuthBasicFake</a></code></li><li><code class="directive"><a href="./mod/mod_auth_form.html#authformloginrequiredlocation">AuthFormLoginRequiredLocation</a></code></li><li><code class="directive"><a href="./mod/mod_auth_form.html#authformlogins
 uccesslocation">AuthFormLoginSuccessLocation</a></code></li><li><code class="directive"><a href="./mod/mod_auth_form.html#authformlogoutlocation">AuthFormLogoutLocation</a></code></li><li><code class="directive"><a href="./mod/mod_authn_core.html#authname">AuthName</a></code></li><li><code class="directive"><a href="./mod/mod_authn_core.html#authtype">AuthType</a></code></li><li><code class="directive"><a href="./mod/mod_rewrite.html#rewritecond">RewriteCond</a></code></li><li><code class="directive"><a href="./mod/mod_setenvif.html#setenvifexpr">SetEnvIfExpr</a></code></li><li><code class="directive"><a href="./mod/mod_headers.html#header">Header</a></code></li><li><code class="directive"><a href="./mod/mod_headers.html#requestheader">RequestHeader</a></code></li><li><code class="directive"><a href="./mod/mod_filter.html#filterprovider">FilterProvider</a></code></li><li><code class="directive"><a href="./mod/mod_crypto.html#cryptokey">CryptoKey</a></code></li><li><code class="direc
 tive"><a href="./mod/mod_crypto.html#cryptoiv">CryptoIV</a></code></li><li><a href="mod/mod_authz_core.html#reqexpr">Require expr</a></li><li><a href="mod/mod_authnz_ldap.html#requser">Require ldap-user</a></li><li><a href="mod/mod_authnz_ldap.html#reqgroup">Require ldap-group</a></li><li><a href="mod/mod_authnz_ldap.html#reqdn">Require ldap-dn</a></li><li><a href="mod/mod_authnz_ldap.html#reqattribute">Require ldap-attribute</a></li><li><a href="mod/mod_authnz_ldap.html#reqfilter">Require ldap-filter</a></li><li><a href="mod/mod_authnz_ldap.html#reqsearch">Require ldap-search</a></li><li><a href="mod/mod_authz_dbd.html#reqgroup">Require dbd-group</a></li><li><a href="mod/mod_authz_dbm.html#reqgroup">Require dbm-group</a></li><li><a href="mod/mod_authz_groupfile.html#reqgroup">Require group</a></li><li><a href="mod/mod_authz_host.html#reqhost">Require host</a></li><li><code class="directive"><a href="./mod/mod_ssl.html#sslrequire">SSLRequire</a></code></li><li><code class="directive
 "><a href="./mod/mod_log_debug.html#logmessage">LogMessage</a></code></li><li><code class="module"><a href="./mod/mod_include.html">mod_include</a></code></li><li><a href="#comments_section">Comments</a></li></ul></div>
 <div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="grammar" id="grammar">Grammar in Backus-Naur Form notation</a></h2>

Modified: httpd/httpd/trunk/docs/manual/expr.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/expr.html.fr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/expr.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/expr.html.fr Sun Jul 10 20:00:17 2016
@@ -26,6 +26,8 @@
 <p><span>Langues Disponibles: </span><a href="./en/expr.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="./fr/expr.html" title="Fran�ais">&nbsp;fr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut �tre p�rim�e. V�rifiez la version
+            anglaise pour les changements r�cents.</div>
 
     <p>Historiquement, il existe de nombreuses variantes dans la syntaxe
     des expressions permettant d'exprimer une condition dans les

Modified: httpd/httpd/trunk/docs/manual/expr.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/expr.xml.fr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/expr.xml.fr (original)
+++ httpd/httpd/trunk/docs/manual/expr.xml.fr Sun Jul 10 20:00:17 2016
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?>
-<!-- English Revision: 1745206 -->
+<!-- English Revision: 1745206:1752099 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 

Modified: httpd/httpd/trunk/docs/manual/expr.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/expr.xml.meta?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/expr.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/expr.xml.meta Sun Jul 10 20:00:17 2016
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/allmodules.xml.de
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/allmodules.xml.de?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/allmodules.xml.de (original)
+++ httpd/httpd/trunk/docs/manual/mod/allmodules.xml.de Sun Jul 10 20:00:17 2016
@@ -36,6 +36,7 @@
   <modulefile>mod_cgi.xml</modulefile>
   <modulefile>mod_cgid.xml</modulefile>
   <modulefile>mod_charset_lite.xml</modulefile>
+  <modulefile>mod_crypto.xml</modulefile>
   <modulefile>mod_data.xml</modulefile>
   <modulefile>mod_dav.xml</modulefile>
   <modulefile>mod_dav_fs.xml</modulefile>

Modified: httpd/httpd/trunk/docs/manual/mod/allmodules.xml.es
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/allmodules.xml.es?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/allmodules.xml.es (original)
+++ httpd/httpd/trunk/docs/manual/mod/allmodules.xml.es Sun Jul 10 20:00:17 2016
@@ -36,6 +36,7 @@
   <modulefile>mod_cgi.xml</modulefile>
   <modulefile>mod_cgid.xml</modulefile>
   <modulefile>mod_charset_lite.xml</modulefile>
+  <modulefile>mod_crypto.xml</modulefile>
   <modulefile>mod_data.xml</modulefile>
   <modulefile>mod_dav.xml</modulefile>
   <modulefile>mod_dav_fs.xml</modulefile>

Modified: httpd/httpd/trunk/docs/manual/mod/allmodules.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/allmodules.xml.fr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/allmodules.xml.fr (original)
+++ httpd/httpd/trunk/docs/manual/mod/allmodules.xml.fr Sun Jul 10 20:00:17 2016
@@ -36,6 +36,7 @@
   <modulefile>mod_cgi.xml.fr</modulefile>
   <modulefile>mod_cgid.xml.fr</modulefile>
   <modulefile>mod_charset_lite.xml.fr</modulefile>
+  <modulefile>mod_crypto.xml</modulefile>
   <modulefile>mod_data.xml.fr</modulefile>
   <modulefile>mod_dav.xml.fr</modulefile>
   <modulefile>mod_dav_fs.xml.fr</modulefile>

Modified: httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ja
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ja?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ja [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ja [utf-8] Sun Jul 10 20:00:17 2016
@@ -36,6 +36,7 @@
   <modulefile>mod_cgi.xml.ja</modulefile>
   <modulefile>mod_cgid.xml.ja</modulefile>
   <modulefile>mod_charset_lite.xml</modulefile>
+  <modulefile>mod_crypto.xml</modulefile>
   <modulefile>mod_data.xml</modulefile>
   <modulefile>mod_dav.xml.ja</modulefile>
   <modulefile>mod_dav_fs.xml.ja</modulefile>

Modified: httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ko
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ko?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ko [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/mod/allmodules.xml.ko [euc-kr] Sun Jul 10 20:00:17 2016
@@ -36,6 +36,7 @@
   <modulefile>mod_cgi.xml.ko</modulefile>
   <modulefile>mod_cgid.xml.ko</modulefile>
   <modulefile>mod_charset_lite.xml.ko</modulefile>
+  <modulefile>mod_crypto.xml</modulefile>
   <modulefile>mod_data.xml</modulefile>
   <modulefile>mod_dav.xml.ko</modulefile>
   <modulefile>mod_dav_fs.xml.ko</modulefile>

Modified: httpd/httpd/trunk/docs/manual/mod/allmodules.xml.tr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/allmodules.xml.tr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/allmodules.xml.tr [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/allmodules.xml.tr [utf-8] Sun Jul 10 20:00:17 2016
@@ -36,6 +36,7 @@
   <modulefile>mod_cgi.xml</modulefile>
   <modulefile>mod_cgid.xml</modulefile>
   <modulefile>mod_charset_lite.xml</modulefile>
+  <modulefile>mod_crypto.xml</modulefile>
   <modulefile>mod_data.xml</modulefile>
   <modulefile>mod_dav.xml</modulefile>
   <modulefile>mod_dav_fs.xml</modulefile>

Modified: httpd/httpd/trunk/docs/manual/mod/allmodules.xml.zh-cn
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/allmodules.xml.zh-cn?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/allmodules.xml.zh-cn (original)
+++ httpd/httpd/trunk/docs/manual/mod/allmodules.xml.zh-cn Sun Jul 10 20:00:17 2016
@@ -36,6 +36,7 @@
   <modulefile>mod_cgi.xml</modulefile>
   <modulefile>mod_cgid.xml</modulefile>
   <modulefile>mod_charset_lite.xml</modulefile>
+  <modulefile>mod_crypto.xml</modulefile>
   <modulefile>mod_data.xml</modulefile>
   <modulefile>mod_dav.xml</modulefile>
   <modulefile>mod_dav_fs.xml</modulefile>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.de
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.de?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.de (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.de Sun Jul 10 20:00:17 2016
@@ -218,6 +218,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.en?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.en Sun Jul 10 20:00:17 2016
@@ -219,6 +219,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.es
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.es?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.es (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.es Sun Jul 10 20:00:17 2016
@@ -221,6 +221,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.fr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.fr Sun Jul 10 20:00:17 2016
@@ -220,6 +220,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.ja.utf8?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.ja.utf8 [utf-8] Sun Jul 10 20:00:17 2016
@@ -216,6 +216,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.ko.euc-kr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.ko.euc-kr [euc-kr] Sun Jul 10 20:00:17 2016
@@ -216,6 +216,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.tr.utf8?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.tr.utf8 [utf-8] Sun Jul 10 20:00:17 2016
@@ -215,6 +215,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/directives.html.zh-cn.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directives.html.zh-cn.utf8?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directives.html.zh-cn.utf8 (original)
+++ httpd/httpd/trunk/docs/manual/mod/directives.html.zh-cn.utf8 Sun Jul 10 20:00:17 2016
@@ -214,6 +214,11 @@
 <li><a href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
 <li><a href="mod_usertrack.html#cookietracking">CookieTracking</a></li>
 <li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li>
+<li><a href="mod_crypto.html#cryptocipher">CryptoCipher</a></li>
+<li><a href="mod_crypto.html#cryptodriver">CryptoDriver</a></li>
+<li><a href="mod_crypto.html#cryptoiv">CryptoIV</a></li>
+<li><a href="mod_crypto.html#cryptokey">CryptoKey</a></li>
+<li><a href="mod_crypto.html#cryptosize">CryptoSize</a></li>
 <li><a href="mod_ssl_ct.html#ctauditstorage">CTAuditStorage</a></li>
 <li><a href="mod_ssl_ct.html#ctlogclient">CTLogClient</a></li>
 <li><a href="mod_ssl_ct.html#ctlogconfigdb">CTLogConfigDB</a></li>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.de
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.de?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.de (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.de Sun Jul 10 20:00:17 2016
@@ -120,6 +120,7 @@ HTTP caching filter.</dd>
 <dt><a href="mod_cgid.html">mod_cgid</a></dt><dd>Execution of CGI scripts using an
     external CGI daemon</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>Specify character set translation or recoding</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convert response body into an RFC2397 data URL</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>Distributed Authoring and Versioning
 (<a href="http://www.webdav.org/">WebDAV</a>) functionality</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.en?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.en Sun Jul 10 20:00:17 2016
@@ -116,6 +116,7 @@ HTTP caching filter.</dd>
 <dt><a href="mod_cgid.html">mod_cgid</a></dt><dd>Execution of CGI scripts using an
     external CGI daemon</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>Specify character set translation or recoding</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convert response body into an RFC2397 data URL</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>Distributed Authoring and Versioning
 (<a href="http://www.webdav.org/">WebDAV</a>) functionality</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.es
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.es?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.es (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.es Sun Jul 10 20:00:17 2016
@@ -117,6 +117,7 @@ HTTP caching filter.</dd>
 <dt><a href="mod_cgid.html">mod_cgid</a></dt><dd>Execution of CGI scripts using an
     external CGI daemon</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>Specify character set translation or recoding</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convert response body into an RFC2397 data URL</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>Distributed Authoring and Versioning
 (<a href="http://www.webdav.org/">WebDAV</a>) functionality</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.fr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.fr Sun Jul 10 20:00:17 2016
@@ -123,6 +123,7 @@ CERN</dd>
 CGI externe</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>Sp�cifie dans quel jeu de caract�re doivent s'effectuer les
 traductions ou les r�encodages</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convertit un corps de r�ponse en URL de type donn�es RFC2397</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>Fonctionnalit� de cr�ation et gestion de versions de
 documents via le web (<a href="http://www.webdav.org/">WebDAV</a>)</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.ja.utf8?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.ja.utf8 [utf-8] Sun Jul 10 20:00:17 2016
@@ -113,6 +113,7 @@ HTTP caching filter.</dd>
 <dt><a href="mod_cgi.html">mod_cgi</a></dt><dd>CGI \u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c</dd>
 <dt><a href="mod_cgid.html">mod_cgid</a></dt><dd>\u5916\u90e8 CGI \u30c7\u30fc\u30e2\u30f3\u3092\u4f7f\u3063\u305f CGI \u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>Specify character set translation or recoding</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convert response body into an RFC2397 data URL</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>\u5206\u6563\u30aa\u30fc\u30b5\u30ea\u30f3\u30b0\u3068\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406
 (<a href="http://www.webdav.org/">WebDAV</a>) \u6a5f\u80fd</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.ko.euc-kr?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.ko.euc-kr [euc-kr] Sun Jul 10 20:00:17 2016
@@ -111,6 +111,7 @@ HTTP caching filter.</dd>
 <dt><a href="mod_cgi.html">mod_cgi</a></dt><dd>CGI \uc2a4\ud06c\ub9bd\ud2b8 \uc2e4\ud589</dd>
 <dt><a href="mod_cgid.html">mod_cgid</a></dt><dd>\uc678\ubd80 CGI \ub370\ubaac\uc744 \uc0ac\uc6a9\ud558\uc5ec CGI \uc2a4\ud06c\ub9bd\ud2b8\ub97c \uc2e4\ud589</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>\ubb38\uc790\uc9d1\ud569 \ubcc0\ud658\uc744 \uc9c0\uc815</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convert response body into an RFC2397 data URL</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>Distributed Authoring and Versioning
 (<a href="http://www.webdav.org/">WebDAV</a>) \uae30\ub2a5</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.tr.utf8?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.tr.utf8 [utf-8] Sun Jul 10 20:00:17 2016
@@ -111,6 +111,7 @@ HTTP caching filter.</dd>
 <dt><a href="mod_cgid.html">mod_cgid</a></dt><dd>Execution of CGI scripts using an
     external CGI daemon</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>Specify character set translation or recoding</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convert response body into an RFC2397 data URL</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>Distributed Authoring and Versioning
 (<a href="http://www.webdav.org/">WebDAV</a>) functionality</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/index.html.zh-cn.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/index.html.zh-cn.utf8?rev=1752105&r1=1752104&r2=1752105&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/index.html.zh-cn.utf8 (original)
+++ httpd/httpd/trunk/docs/manual/mod/index.html.zh-cn.utf8 Sun Jul 10 20:00:17 2016
@@ -111,6 +111,7 @@ HTTP caching filter.</dd>
 <dt><a href="mod_cgid.html">mod_cgid</a></dt><dd>Execution of CGI scripts using an
     external CGI daemon</dd>
 <dt><a href="mod_charset_lite.html">mod_charset_lite</a></dt><dd>Specify character set translation or recoding</dd>
+<dt><a href="mod_crypto.html">mod_crypto</a></dt><dd>Support for symmetrical encryption and decryption</dd>
 <dt><a href="mod_data.html" id="D" name="D">mod_data</a></dt><dd>Convert response body into an RFC2397 data URL</dd>
 <dt><a href="mod_dav.html">mod_dav</a></dt><dd>Distributed Authoring and Versioning
 (<a href="http://www.webdav.org/">WebDAV</a>) functionality</dd>

Added: httpd/httpd/trunk/docs/manual/mod/mod_crypto.html
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_crypto.html?rev=1752105&view=auto
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_crypto.html (added)
+++ httpd/httpd/trunk/docs/manual/mod/mod_crypto.html Sun Jul 10 20:00:17 2016
@@ -0,0 +1,5 @@
+# GENERATED FROM XML -- DO NOT EDIT
+
+URI: mod_crypto.html.en
+Content-Language: en
+Content-type: text/html; charset=ISO-8859-1

Propchange: httpd/httpd/trunk/docs/manual/mod/mod_crypto.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/httpd/trunk/docs/manual/mod/mod_crypto.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_crypto.html.en?rev=1752105&view=auto
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_crypto.html.en (added)
+++ httpd/httpd/trunk/docs/manual/mod/mod_crypto.html.en Sun Jul 10 20:00:17 2016
@@ -0,0 +1,315 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
+<meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type" />
+<!--
+        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+              This file is generated from xml source: DO NOT EDIT
+        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+      -->
+<title>mod_crypto - Apache HTTP Server Version 2.5</title>
+<link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
+<link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
+<link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="../style/css/prettify.css" />
+<script src="../style/scripts/prettify.min.js" type="text/javascript">
+</script>
+
+<link href="../images/favicon.ico" rel="shortcut icon" /></head>
+<body>
+<div id="page-header">
+<p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
+<p class="apache">Apache HTTP Server Version 2.5</p>
+<img alt="" src="../images/feather.png" /></div>
+<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
+<div id="path">
+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.5</a> &gt; <a href="./">Modules</a></div>
+<div id="page-content">
+<div id="preamble"><h1>Apache Module mod_crypto</h1>
+<div class="toplang">
+<p><span>Available Languages: </span><a href="../en/mod/mod_crypto.html" title="English">&nbsp;en&nbsp;</a></p>
+</div>
+<table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Support for symmetrical encryption and decryption</td></tr>
+<tr><th><a href="module-dict.html#Status">Status:</a></th><td>Extension</td></tr>
+<tr><th><a href="module-dict.html#ModuleIdentifier">Module�Identifier:</a></th><td>crypto_module</td></tr>
+<tr><th><a href="module-dict.html#SourceFile">Source�File:</a></th><td>mod_crypto.c</td></tr>
+<tr><th><a href="module-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.5 and later</td></tr></table>
+<h3>Summary</h3>
+
+    <p>This module provides the ability to <strong>encrypt and decrypt</strong>
+    data on the input and output filter stacks.</p>
+
+    <p>Most specifically, it can be used to implement <strong>on-the-fly HLS
+    encryption</strong> as described by
+    <a href="http://www.ietf.org/id/draft-pantos-http-live-streaming-19.txt">
+    draft-pantos-http-live-streaming-19</a>.</p>
+
+    <p>Alternatively, it can be used to deliver secure data over insecure CDN
+    to suitable clients.</p>
+
+    <p>The crypto filter may be added to either the input or the
+    output filter stacks, as appropriate, using the
+    <code class="directive"><a href="../mod/core.html#setinputfilter">SetInputFilter</a></code>,
+    <code class="directive"><a href="../mod/core.html#setoutputfilter">SetOutputFilter</a></code>,
+    <code class="directive"><a href="../mod/mod_mime.html#addoutputfilter">AddOutputFilter</a></code> or
+    <code class="directive"><a href="../mod/mod_filter.html#addoutputfilterbytype">AddOutputFilterByType</a></code> directives.</p>
+
+</div>
+<div id="quickview"><h3>Topics</h3>
+<ul id="topics">
+<li><img alt="" src="../images/down.gif" /> <a href="#format">Stream Format</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#config">Keys and IVs</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#handler">Crypto Key Handler</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#hls">HTTP Live Streaming</a></li>
+</ul><h3 class="directives">Directives</h3>
+<ul id="toc">
+<li><img alt="" src="../images/down.gif" /> <a href="#cryptocipher">CryptoCipher</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#cryptodriver">CryptoDriver</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#cryptoiv">CryptoIV</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#cryptokey">CryptoKey</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#cryptosize">CryptoSize</a></li>
+</ul>
+<h3>Bugfix checklist</h3><ul class="seealso"><li><a href="https://www.apache.org/dist/httpd/CHANGES_2.4">httpd changelog</a></li><li><a href="https://bz.apache.org/bugzilla/buglist.cgi?bug_status=__open__&amp;list_id=144532&amp;product=Apache%20httpd-2&amp;query_format=specific&amp;order=changeddate%20DESC%2Cpriority%2Cbug_severity&amp;component=mod_crypto">Known issues</a></li><li><a href="https://bz.apache.org/bugzilla/enter_bug.cgi?product=Apache%20httpd-2&amp;component=mod_crypto">Report a bug</a></li></ul><h3>See also</h3>
+<ul class="seealso">
+<li><a href="../filter.html">Filters</a></li>
+<li><a href="#comments_section">Comments</a></li></ul></div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="format" id="format">Stream Format</a></h2>
+    
+
+    <p>The encrypted stream consists of an optional IV block, followed by encrypted
+    blocks using the chosen cipher. The final block is padded before being written. The
+    size of the blocks is governed by the choice of cipher in use.</p>
+
+    <p>When the IV is specified with the <code class="directive"><a href="#cryptoiv">CryptoIV</a></code>
+    directive, that IV is used, and is not written to or read from the stream.</p>
+
+</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="config" id="config">Keys and IVs</a></h2>
+    
+
+    <p>
+        The
+        <code class="directive"><a href="#cryptokey">CryptoKey</a></code>
+        and
+        <code class="directive"><a href="#cryptoiv">CryptoIV</a></code>
+        directives expect binary
+        values which can be specified in a number of ways as below. The most significant bits of the relevant values
+        are used, and if the values are too short, they are padded on the left
+        with zero bits.
+    </p>
+
+    <dl>
+    <dt>file:</dt><dd>Read the value directly from the given file.</dd>
+    <dt>hex:</dt><dd>Parse the expression as a hex value, which may contain colon separators.</dd>
+    <dt>decimal:</dt><dd>Parse the expression as a decimal value.</dd>
+    <dt>base64:</dt><dd>Parse the expression as a base64 value.</dd>
+    <dt>none</dt><dd>No value is specified.</dd>
+    </dl>
+
+    <p>If the IV is unspecified a random IV will be generated during
+        encryption and written
+        as the first block. During decryption, the first block will be
+        interpreted as the IV.
+    </p>
+
+    <p>With the exception of file:, the <code class="directive"><a href="#cryptokey">CryptoKey</a></code>
+       and <code class="directive"><a href="#cryptoiv">CryptoIV</a></code> directives allow
+       <a href="../expr.html">expression syntax</a> to provide flexibility when setting the values.
+       This allows both keys and IVs to be salted with values available to the webserver, such
+       as REMOTE_USER, or the URL.
+    </p>
+
+</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="handler" id="handler">Crypto Key Handler</a></h2>
+    
+
+    <p>For convenience, the <strong>crypto-key</strong> handler can be used to serve the key
+    to suitably authorized clients, removing the need to store the key within the directory
+    space of the webserver. This also allows the same <a href="../expr.html">expression
+    syntax</a> to be used to derive the key for both the clients and the encrypted content.</p>
+
+    <div class="example"><h3>Crypto Key Handler with a File</h3><p><code>
+      &lt;Location /key&gt;<br />
+      <span class="indent">
+        SetHandler crypto-key<br />
+        CryptoCipher aes128<br />
+        CryptoKey file:/path/to/file.key<br />
+        AuthType basic<br />
+        ...<br />
+        </span>
+      &lt;/Location&gt;<br />
+    </code></p></div>
+
+</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="hls" id="hls">HTTP Live Streaming</a></h2>
+    
+
+    <p>The HLS protocol supports encrypted streams using the AES-128 cipher and a
+    corresponding key. Access is granted to the stream by sharing the key with
+    the HLS client, typically over a secured connection.</p>
+
+    <p>The IV used for encrypting each media segment is specified within
+        HLS in one of two ways:</p>
+
+    <ul>
+        <li>
+            Explicitly specified within an IV attribute inside the EXT-X-KEY
+            tag as a <strong>hexadecimal</strong> value.
+        </li>
+        <li>
+            Implicitly specified by interpreting the <strong>decimal</strong>
+            value of the EXT-X-MEDIA-SEQUENCE tag.
+        </li>
+    </ul>
+
+    <p>The media sequence value is usually embedded within the media
+        segment filenames, and can be matched by using named regular
+        expressions as per the example below.
+    </p>
+
+    <div class="example"><h3>HLS Example - IV from media sequence</h3><p><code>
+      &lt;LocationMatch (?&lt;SEQUENCE&gt;[\d]+)[^\d^/]+$&gt;<br />
+      <span class="indent">
+        SetOutputFilter ENCRYPT<br />
+        CryptoCipher aes128<br />
+        CryptoKey file:/path/to/file.key<br />
+        CryptoIV decimal:%{env:MATCH_SEQUENCE}<br />
+        </span>
+      &lt;/LocationMatch&gt;<br />
+    </code></p></div>
+
+</div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="directive-section"><h2><a name="CryptoCipher" id="CryptoCipher">CryptoCipher</a> <a name="cryptocipher" id="cryptocipher">Directive</a></h2>
+<table class="directive">
+<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Cipher to be used by the crypto filter</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>CryptoCipher name</code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>CryptoCipher aes256</code></td></tr>
+<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
+<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
+<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_crypto</td></tr>
+</table>
+    <p>The <code class="directive">CryptoCipher</code> directive allows specification of
+    the cipher to be used during encryption or decryption. If not specified, the
+    cipher defaults to <code>aes256</code>.</p>
+
+    <p>Possible values depend on the crypto driver in use, and could be one of:</p>
+
+    <ul><li>3des192</li><li>aes128</li><li>aes192</li><li>aes256</li></ul>
+
+
+</div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="directive-section"><h2><a name="CryptoDriver" id="CryptoDriver">CryptoDriver</a> <a name="cryptodriver" id="cryptodriver">Directive</a></h2>
+<table class="directive">
+<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Name of the crypto driver to use</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>CryptoDriver name</code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>CryptoDriver openssl</code></td></tr>
+<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config</td></tr>
+<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
+<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_crypto</td></tr>
+</table>
+    <p>The <code class="directive"><a href="#cryptodriver">CryptoDriver</a></code>
+    directive specifies the name of the crypto driver to use. There is usually
+    a recommended default driver on each platform. Possible values include
+    <strong>openssl</strong>, <strong>commoncrypto</strong> and
+    <strong>nss</strong>.</p>
+
+</div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="directive-section"><h2><a name="CryptoIV" id="CryptoIV">CryptoIV</a> <a name="cryptoiv" id="cryptoiv">Directive</a></h2>
+<table class="directive">
+<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>IV (Initialisation Vector) to be used by the crypto filter</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>CryptoIV value</code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>CryptoIV none</code></td></tr>
+<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
+<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
+<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_crypto</td></tr>
+</table>
+    <p>The <code class="directive">CryptoIV</code> directive allows the IV (initialisation
+    vector) to be specified for the particular URL space. The IV can be read from
+    a file, or can be set based on the <a href="../expr.html">expression parser</a>,
+    allowing for flexible scenarios for the setting of keys.</p>
+
+    <p>Values can be specified as read from a file, or as a hexadecimal, decimal or
+    base64 value based on the following prefixes:</p>
+
+    <ul><li>file:</li><li>hex:</li><li>decimal:</li><li>base64:</li></ul>
+
+    <p>The value 'none' disables setting of the IV. In this case, during encryption
+    a random IV will be generated and inserted as the first block, and during
+    decryption the first block will interpreted as the IV.</p>
+
+</div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="directive-section"><h2><a name="CryptoKey" id="CryptoKey">CryptoKey</a> <a name="cryptokey" id="cryptokey">Directive</a></h2>
+<table class="directive">
+<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Key to be used by the crypto filter</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>CryptoKey value</code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>CryptoKey none</code></td></tr>
+<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
+<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
+<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_crypto</td></tr>
+</table>
+    <p>The <code class="directive">CryptoKey</code> directive allows the encryption / decryption
+    key to be specified for the particular URL space. The key can be read from a file, or
+    can be set based on the <a href="../expr.html">expression parser</a>, allowing for
+    flexible scenarios for the setting of keys.</p>
+
+    <p>Values can be specified as read from a file, or as a hexadecimal, decimal or
+    base64 value based on the following prefixes:</p>
+
+    <ul><li>file:</li><li>hex:</li><li>decimal:</li><li>base64:</li></ul>
+
+    <p>The value 'none' disables the key. An attempt to serve a file through the ENCRYPT
+    or DECRYPT filters without a key will cause the request to fail.</p>
+
+</div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="directive-section"><h2><a name="CryptoSize" id="CryptoSize">CryptoSize</a> <a name="cryptosize" id="cryptosize">Directive</a></h2>
+<table class="directive">
+<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maximum size in bytes to buffer by the crypto filter</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>CryptoSize integer</code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>CryptoSize 131072</code></td></tr>
+<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
+<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
+<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_crypto</td></tr>
+</table>
+    <p>The <code class="directive"><a href="#cryptosize">CryptoSize</a></code>
+    directive specifies the amount of data in bytes that will be
+    buffered before being encrypted or decrypted during each request.
+    The default is 128 kilobytes.</p>
+
+</div>
+</div>
+<div class="bottomlang">
+<p><span>Available Languages: </span><a href="../en/mod/mod_crypto.html" title="English">&nbsp;en&nbsp;</a></p>
+</div><div class="top"><a href="#page-header"><img src="../images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Comments</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&amp;A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div>
+<script type="text/javascript"><!--//--><![CDATA[//><!--
+var comments_shortname = 'httpd';
+var comments_identifier = 'http://httpd.apache.org/docs/trunk/mod/mod_crypto.html';
+(function(w, d) {
+    if (w.location.hostname.toLowerCase() == "httpd.apache.org") {
+        d.write('<div id="comments_thread"><\/div>');
+        var s = d.createElement('script');
+        s.type = 'text/javascript';
+        s.async = true;
+        s.src = 'https://comments.apache.org/show_comments.lua?site=' + comments_shortname + '&page=' + comments_identifier;
+        (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
+    }
+    else {
+        d.write('<div id="comments_thread">Comments are disabled for this page at the moment.<\/div>');
+    }
+})(window, document);
+//--><!]]></script></div><div id="footer">
+<p class="apache">Copyright 2016 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
+if (typeof(prettyPrint) !== 'undefined') {
+    prettyPrint();
+}
+//--><!]]></script>
+</body></html>
\ No newline at end of file

Propchange: httpd/httpd/trunk/docs/manual/mod/mod_crypto.html.en
------------------------------------------------------------------------------
    svn:eol-style = native