diff options
author | Stefan Fritsch <sf@apache.org> | 2011-10-01 22:57:36 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-10-01 22:57:36 +0200 |
commit | a83284e10365f9baf39331e545dde65ecdc99ef1 (patch) | |
tree | 62b5783c3c8bdd535762acfcac4676621f71bc25 /docs/manual/mod/mod_session_crypto.html.en | |
parent | grammar fix (diff) | |
download | apache2-a83284e10365f9baf39331e545dde65ecdc99ef1.tar.xz apache2-a83284e10365f9baf39331e545dde65ecdc99ef1.zip |
update xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1178089 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_session_crypto.html.en')
-rw-r--r-- | docs/manual/mod/mod_session_crypto.html.en | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/manual/mod/mod_session_crypto.html.en b/docs/manual/mod/mod_session_crypto.html.en index 45968286f8..2d4cdd0ea0 100644 --- a/docs/manual/mod/mod_session_crypto.html.en +++ b/docs/manual/mod/mod_session_crypto.html.en @@ -41,14 +41,14 @@ <p>This submodule of <code class="module"><a href="../mod/mod_session.html">mod_session</a></code> provides support for the encryption of user sessions before being written to a local database, or written to a remote browser via an HTTP cookie.</p> - + <p>This can help provide privacy to user sessions where the contents of the session should be kept private from the user, or where protection is needed against the effects of cross site scripting attacks.</p> - + <p>For more details on the session interface, see the documentation for the <code class="module"><a href="../mod/mod_session.html">mod_session</a></code> module.</p> - + </div> <div id="quickview"><h3 class="directives">Directives</h3> <ul id="toc"> @@ -67,23 +67,23 @@ <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> <h2><a name="basicusage" id="basicusage">Basic Usage</a></h2> - + <p>To create a simple encrypted session and store it in a cookie called <var>session</var>, configure the session as follows:</p> - + <div class="example"><h3>Browser based encrypted session</h3><p><code> Session On<br /> SessionCookieName session path=/<br /> SessionCryptoPassphrase secret </code></p></div> - + <p>The session will be encrypted with the given key. Different servers can be configured to share sessions by ensuring the same encryption key is used on each server.</p> - + <p>If the encryption key is changed, sessions will be invalidated automatically.</p> - + <p>For documentation on how the session can be used to store username and password details, see the <code class="module"><a href="../mod/mod_auth_form.html">mod_auth_form</a></code> module.</p> @@ -155,7 +155,7 @@ <p>The cipher can be set to <var>3des192</var> or <var>aes256</var> using the <var>cipher</var> parameter as per the example below. If not set, the cipher defaults to <var>aes256</var>.</p> - + <div class="example"><h3>Cipher</h3><p><code> SessionCryptoPassphrase secret cipher=aes256 </code></p></div> |