Commit 8166986e authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Added info about certs using the RSA algorithm.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8059 b35dd754-fafc-0310-a699-88a17e54d16e
parent da477444
...@@ -170,6 +170,13 @@ password as well using the keytool:</p> ...@@ -170,6 +170,13 @@ password as well using the keytool:</p>
<p><tt>keytool -keypasswd -alias example.com -keystore keystore</tt> <p><tt>keytool -keypasswd -alias example.com -keystore keystore</tt>
</p> </p>
<p>Keytool will create certificates using the DSA algorithm by default. Some clients
expect the server to have RSA certificates or they will fail to use TLS/SSL. Therefore,
it is a good idea to also create RSA certificates in your keystore. To create
certificates with the RSA algorithm you need to specify the algorithm to use like this:</p>
<p><tt>keytool -genkey -keystore keystore -alias example.com -keyalg RSA </tt></p>
<h3>3. Obtain a CA signed certificate</h3> <h3>3. Obtain a CA signed certificate</h3>
<p> <p>
If you decide to get a CA signed certificate, you must first export the If you decide to get a CA signed certificate, you must first export the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment