From: jfclere
Date: Mon, 17 Mar 2008 09:59:15 +0000 (+0000)
Subject: Add SSLRandomSeed documentation.
X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=bb3c870c46c91dd6b01d0d737a794dc77c5d5299;p=tomcat7.0
Add SSLRandomSeed documentation.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@637810 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/webapps/docs/ssl-howto.xml b/webapps/docs/ssl-howto.xml
index 2e41b4c22..0ab3ae3c4 100644
--- a/webapps/docs/ssl-howto.xml
+++ b/webapps/docs/ssl-howto.xml
@@ -282,11 +282,11 @@ which contains further references for this issue.
If you are using APR, you have the option of configuring an alternative engine to openSSL.
-<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="someengine" />
+<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="someengine" SSLRandomSeed="somedevice" />
The default value is
-<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
+<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" SSLRandomSeed="builtin" />
So to use SSL under APR, make sure the SSLEngine attribute is set to something other than off.
The default value is on and if you specify another value, it has to be a valid engine name.
@@ -295,6 +295,9 @@ If you haven't compiled in SSL support into your Tomcat Native library, then you
<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="off" />
+SSLRandomSeed allows to specify a source of entropy. Productive system needs a reliable source of entropy
+but entropy may need a lot of time to be collected therefore test systems could use no blocking entropy
+sources like "/dev/urandom" that will allow quickier starts of Tomcat.