<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SSL.com Knowledge Base</title><description>SSL.com Knowledge Base RSS 2.0 Feed</description><link>http://info.ssl.com/</link><webMaster>support@ssl.com</webMaster><lastBuildDate>Sat, 04 Feb 2012 10:08:57 GMT</lastBuildDate><ttl>20</ttl><generator>SSL.com Knowledge Base</generator><item><title>Browser Error: 'ssl_error_rx_record_too_long' or 'Internet Explorer cannot display the webpage' on Linux</title><link>http://info.ssl.com/article.aspx?id=12150</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;It seems obvious you’ve come across the following error while trying to setup SSL certificates on apache.&lt;/P&gt;&lt;P&gt;    Error code: 'ssl_error_rx_record_too_long' (Firefox) or 'Internet Explorer cannot display the webpage' (IE)&lt;/P&gt;&lt;P&gt;Well more often than not, you have something mis-configured! (Likely the listening port: 443). What you might want to do is check that your firewall or iptables allows incoming connections on 443.&lt;/P&gt;&lt;P&gt;Ubuntu:&lt;/P&gt;&lt;P&gt;    #sudo ufw allow 443&lt;/P&gt;&lt;P&gt;Ok, wonderful – that probably didn’t fix your problem. But now try going to the following address&lt;/P&gt;&lt;P&gt;    &lt;A href="http://www.domain.tld:443/"&gt;http://www.domain.tld:443&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you’ve successfully seen something at the above page, it means your sites are listening on that port for non-ssl. I’ll assume that your apache virtual host file has something along the lines of:&lt;/P&gt;&lt;P&gt;    NameVirtualHost *&lt;/P&gt;&lt;P&gt;    &lt;VIRTUALHOST *&gt;&lt;/P&gt;&lt;P&gt;What you’re going to want to do is force your vhosts to listen specifically on the proper ports. Changing to the following:&lt;/P&gt;&lt;P&gt;    NameVirtualHost *:80&lt;/P&gt;&lt;P&gt;    &lt;VIRTUALHOST *:80&gt;&lt;/P&gt;&lt;P&gt;If you’re using ubuntu your ports.conf file should likely have 443 enabled on the listening port, and you may also have default-ssl listed in your /etc/apache2/sites-available/ folder. In which case you may want to enable that.&lt;/P&gt;&lt;P&gt;    #sudo a2ensite /etc/apache2/sites-available/default-ssl&lt;/P&gt;&lt;P&gt;Basically that file has the following inside of it&lt;/P&gt;&lt;P&gt;    &lt;IFMODULE mod_ssl.c&gt;&lt;BR&gt;    &lt;VIRTUALHOST _default_:443&gt;&lt;BR&gt;    …… your server name / document root …..&lt;BR&gt;    SSLEngine on&lt;BR&gt;    SSLCertificateFile    /etc/ssl/certs/server.crt&lt;BR&gt;    SSLCertificateKeyFile /etc/ssl/private/server.key&lt;/VIRTUALHOST&gt;&lt;BR&gt;    &lt;/</description><pubDate>Thu, 12 Jan 2012 10:33:31 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>"The page cannot be displayed" (Cannot find server or DNS error)</title><link>http://info.ssl.com/article.aspx?id=10059</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;&lt;STRONG&gt;"The page cannot be displayed" (Cannot find server or DNS error)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;HR&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are several things that can cause this vague error message.  The most common reasons we have seen are as follows:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A firewall or router is blocking access on your network on port 443.&lt;/LI&gt;&lt;LI&gt;The private key for your certificate does not match or is not associated correctly with the certificate.&lt;/LI&gt;&lt;LI&gt;The DNS entries for the web site are configured incorrectly.&lt;/LI&gt;&lt;LI&gt;The web server is not configured to run on port 443 for https requests.&lt;/LI&gt;&lt;LI&gt;The web site is not the IIS Default Website and has not been bound to an IP address for https requests.  (IIS defaults this to "All Unassigned")&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For further reading on this topic, check the external links below.&lt;/P&gt;</description><pubDate>Thu, 12 Jan 2012 08:19:59 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>After installing the SSL certificate, I get a pop-up window. What do I do?</title><link>http://info.ssl.com/article.aspx?id=10098</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;If you get the following dialogue: &lt;/P&gt;&lt;P&gt;&lt;IMG border=0 hspace=0 alt="name mismatch" align=baseline src="http://info.ssl.com/ssl_kb/images/dialogue.bmp"&gt;&lt;/P&gt;&lt;P&gt;Note the error stating "The name on the security certificate is invalid or does not match the name of the site". This simply means that the URL typed in the browser window does not match the site named in the certificate. For instance, if the SSL certificate was issued to "secure.ssl.com", and it was installed on server where multiple domain names share this certificate, then visiting the other domain names such as "&lt;A href="http://www.ssl.com/"&gt;www.ssl.com&lt;/A&gt;" or "shopping.whatever.com" will result in this pop-up window. To eliminate this pop-up, be sure the URL in the browser and the site stated on the certificate match. In this case, type "secure.ssl.com" to avoid the pop-up. Otherwise, consider purchasing a wildcard certificate if you require using additional subdomains.&lt;/P&gt;</description><pubDate>Thu, 12 Jan 2012 08:19:32 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Install a Certificate on Java Based Web Servers</title><link>http://info.ssl.com/article.aspx?id=10033</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;The certificates you receive will be:&lt;BR&gt;&lt;EM&gt;GTECyberTrustRoot.crt&lt;BR&gt;ComodoSecurityServicesCA.crt&lt;BR&gt;domain.crt&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;These must be imported in the correct order:&lt;BR&gt;&lt;EM&gt;GTECyberTrustRoot.crt&lt;BR&gt;ComodoSecurityServicesCA.crt&lt;BR&gt;domain.crt&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color=#ff1111&gt;Please replace the example keystore name 'domain.key' with your keystore name&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Use the keytool command to import the certificates as follows:&lt;BR&gt;&lt;STRONG&gt;keytool -import -trustcacerts -alias root -file GTECyberTrustRootCA.crt -keystore domain.key&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Use the same process for the Comodo certificate using the keytool command:&lt;BR&gt;&lt;STRONG&gt;keytool -import -trustcacerts -alias comodo -file ComodoSecurityServicesCA.crt&lt;BR&gt;-keystore domain.key&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Use the same process for the site certificate using the keytool command, if you are using an alias then please include the alias command in the string. Example: &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;keytool -import -trustcacerts -alias yyy (where yyy is the alias specified during CSR creation) -file domain.crt -keystore domain.key&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;FONT color=#ff1111&gt;IMPORTANT! Be sure there are no trailing spaces following -----END CERTIFICATE----- in the certificate file. Otherwise, you will end up with error messages resembling:&lt;/FONT&gt;&lt;/P&gt;&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;&lt;P&gt;&lt;FONT color=#ff1111&gt;java.io.EOFException&lt;BR&gt;        at java.io.DataInputStream.readFully(DataInputStream.java:268)&lt;BR&gt;        at java.io.DataInputStream.readFully(DataInputStream.java:242)&lt;BR&gt;        at sun.security.util.DerValue.init(DerValue.java:374)&lt;BR&gt;        at sun.security.util.DerValue.&lt;init&gt;(DerValue.java:302)&lt;BR&gt;        at sun.security.provider.X509Factory.parseX509orPKCS7Cert(X509Factory.ja&lt;BR&gt;va:522)&lt;/FONT&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The password is then requested.&lt;BR&gt;Enter keystore password: (This is the one used during CSR creation)&lt;BR&gt;The following information will be displayed about the certificate and you will be asked if you</description><pubDate>Mon, 21 Nov 2011 11:06:25 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Generate a CSR for Java Based Web Servers</title><link>http://info.ssl.com/article.aspx?id=10008</link><description>&lt;B&gt;Abstract:&lt;/B&gt;         &lt;p&gt;            &lt;strong&gt;How to generate a CSR using Java Keytool&lt;/strong&gt;        &lt;/p&gt;        &lt;p&gt;            &lt;b&gt;**NOTE:  You must generate a new keystore through this process. If                 you try to install a new certificate to an old keystore your certificate will not work properly. Backup and                 remove any old keystores if necessary before beginning this process.&lt;/b&gt;        &lt;/p&gt;        &lt;h3&gt;Step 1: Create a new Keystore&lt;/h3&gt;        &lt;ol&gt;            &lt;li&gt;                &lt;p&gt;                    You will be using the keytool command to create your new key-CSR pairing. Enter the following:                &lt;/p&gt;                &lt;p&gt;                    &lt;code&gt;                        keytool -genkey -alias server -keyalg RSA -keysize 2048 -keystore yourdomain.jks                    &lt;/code&gt;                &lt;/p&gt;                &lt;p&gt;                    'Yourdomain' is the name of the domain you are securing.  However, if you are ordering a Wildcard Certificate, do not include * in the beginning of the filename as this is not a valid filename character.                &lt;/p&gt;            &lt;/li&gt;            &lt;li&gt;                &lt;p&gt;                    You will be prompted for the DN information. Please note: when it asks for first and last name, this is not YOUR first and last name, but rather your domain name and extension(i.e., www.yourdomain.com). If you are ordering a Wildcard Certificate this must begin with *. (example: *.yourdomain.com)                &lt;/p&gt;            &lt;/li&gt;            &lt;li&gt;                &lt;p&gt;                    Confirm that the information is correct by entering 'y' or 'yes' when prompted.                     Next you will be asked for your password to confirm.  Make sure to remember the password you choose.                &lt;/p&gt;            &lt;/li&gt;        &lt;/ol&gt;        &lt;h3&gt;Step 2: Generate your CSR with your new keystore&lt;/h3&gt;        &lt;ol&gt;            &lt;li&gt;                &lt;p</description><pubDate>Mon, 21 Nov 2011 09:31:41 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Install a Certificate on Hsphere</title><link>http://info.ssl.com/article.aspx?id=10030</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;OL&gt;&lt;LI&gt;After you receive your SSL certificate save all of the certificate files to a secure location. You will need the site certificate and the Comodo intermediate certificate. &lt;A href="http://www.ssl.com/cert_bundles/ssl_ca_bundle.txt"&gt;ssl_ca-bundle&lt;/A&gt; (&lt;A href="http://www.ssl.com/cert_bundles/trial_ssl_ca_bundle.txt"&gt;trial_ssl_ca-bundle&lt;/A&gt; for free ssl) &lt;/LI&gt;&lt;LI&gt;Click SSL on your control panel home page.&lt;/LI&gt;&lt;LI&gt;Go to the Web Service page and click the Edit icon in the SSL field. &lt;/LI&gt;&lt;LI&gt;In the form that opens, enter the SSL certificate into the box Install Certificate based on previously generated Certificate request and click Upload:&lt;BR&gt;&lt;BR&gt;&lt;IMG alt=Hsphere hspace=0 src="http://www.instantssl.com/ssl-certificate-images/graphics/ssl-hsphere3.gif" align=baseline border=0&gt;&lt;BR&gt;&lt;BR&gt;&lt;/LI&gt;&lt;LI&gt;Enter the Comodo intermediate certificate into the box Certificate Chain File and click Install:&lt;BR&gt;&lt;BR&gt;&lt;IMG alt=Hsphere hspace=0 src="http://www.instantssl.com/ssl-certificate-images/graphics/ssl-hsphere4.gif" align=baseline border=0&gt;&lt;BR&gt;&lt;BR&gt;&lt;/LI&gt;&lt;LI&gt;Now you can use the SSL certificate. &lt;/LI&gt;&lt;/OL&gt;</description><pubDate>Sat, 29 Oct 2011 08:20:51 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Install a Certificate on Ensim Webppliance 3.1.x </title><link>http://info.ssl.com/article.aspx?id=10029</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;&lt;STRONG&gt;Step one: Loading the Site Certificate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You will receive an email from SSL.com with the certificate in the email (yourdomainname.crt). When viewed in a text editor, your certificate will look something like:&lt;/P&gt;&lt;P&gt;-----BEGIN CERTIFICATE-----&lt;BR&gt;MIAGCSqGSIb3DQEHAqCAMIACAQExADALBgkqhkiG9w0BBwGggDCCAmowggHXAhAF&lt;BR&gt;(.......)&lt;BR&gt;K99c42ku3QrlX2+KeDi+xBG2cEIsdSiXeQS/16S36ITclu4AADEAAAAAAAAA&lt;BR&gt;-----END CERTIFICATE-----&lt;/P&gt;&lt;P&gt;Copy your Certificate into the directory that you will be using to hold your certificates. In this example we will use /etc/ssl/crt/. Both the public and private key files will already be in this directory. The private key used in the example will be labelled private.key and the public key will be yourdomainname.crt.&lt;/P&gt;&lt;P&gt;It is recommended that you make the directory that contains the private key file only readable by root. &lt;/P&gt;&lt;P&gt;Login to the Administrator console and select the site that the certificate was requested for.&lt;/P&gt;&lt;P&gt;Select Services, then Actions next to Apache Web Server and then SSL Settings. There should already be a 'Self Signed' certificate saved.&lt;/P&gt;&lt;P&gt;&lt;IMG alt=Ensim hspace=0 src="http://info.ssl.com/ssl_kb/img/install/ensim/ensim6.gif" align=baseline border=0&gt;&lt;/P&gt;&lt;P&gt;Select 'Import' and copy the text from the yourdomainname.crt file into the box&lt;/P&gt;&lt;P&gt;&lt;IMG alt=Ensim hspace=0 src="http://info.ssl.com/ssl_kb/img/install/ensim/ensim7.gif" align=baseline border=0&gt;&lt;/P&gt;&lt;P&gt;Select 'Save', the status should now change to successful.&lt;/P&gt;&lt;P&gt;&lt;IMG alt=Ensim hspace=0 src="http://info.ssl.com/ssl_kb/img/install/ensim/ensim8.gif" align=baseline border=0&gt;&lt;/P&gt;&lt;P&gt;Logout, do not select delete as this will delete the installed certificate.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step two: Install the Intermediate/Root Certificates&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You will need to install the Intermediate and Root certificates in order for browsers to trust your certificate. As well as your SSL certificate (yourdomainname.crt) two other certific</description><pubDate>Sat, 29 Oct 2011 08:19:17 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Install a Certificate on Apache</title><link>http://info.ssl.com/article.aspx?id=10022</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;(&lt;FONT color=#ff1111&gt;note&lt;/FONT&gt;: This article applies to Apache with Mod_SSL or OpenSSL)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step one: Copy your certificate to file&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You will receive an email from SSL.com with the certificate in the email (yourdomainname.crt). When viewed in a text editor, your certificate will look something like:&lt;/P&gt;&lt;P&gt;-----BEGIN CERTIFICATE-----&lt;BR&gt;MIAGCSqGSIb3DQEHAqCAMIACAQExADALBgkqhkiG9w0BB&lt;BR&gt;UbM77e50M63v1Z2A/5O5MA0GCSqGSIb3DQEOBAUAMF8x&lt;BR&gt;(.......)&lt;BR&gt;E+cFEpf0WForA+eRP6XraWw8rTN8102zGrcJgg4P6XVS4l39+l&lt;BR&gt;K99c42ku3QrlX2+KeDi+xBG2cEIsdSiXeQS/16S36ITclu4AAD&lt;BR&gt;-----END CERTIFICATE-----&lt;/P&gt;&lt;P&gt;Copy your Certificate into the directory that you will be using to hold your certificates. In this example we will use /etc/ssl/crt/. Both the public and private key files will already be in this directory. The private key used in the example will be labeled private.key and the public key will be yourdomainname.crt. &lt;/P&gt;&lt;P&gt;It is recommended that you make the directory that contains the private key file only readable by root. &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step two: Install the Intermediate Certificates&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You will need to install the chain certificates (intermediates) in order for browsers to trust your certificate. As well as your SSL certificate (yourdomainname.crt) two other certificates, named GTECyberTrustRootCA.crt and ComodoClass3SecurityServicesCA.crt, are also attached to the email from SSL. Apache users will not require these certificates. Instead you can install the intermediate certificates using a 'bundle' method.&lt;/P&gt;&lt;P&gt;In the Virtual Host settings for your site, in the httpd.conf file, you will need to complete the following:&lt;/P&gt;&lt;P&gt;1. Copy this &lt;A href="http://www.ssl.com/cert_bundles/ssl_ca_bundle.txt"&gt;ssl_ca-bundle&lt;/A&gt; (&lt;A href="http://www.ssl.com/cert_bundles/trial_ssl_ca_bundle.txt"&gt;trial_ssl_ca-bundle&lt;/A&gt; for free ssl) file to the same directory as httpd.conf (this contains all of the CA certificates in the chain).&lt;/P&gt;&lt;P&gt;2. Ad</description><pubDate>Sat, 29 Oct 2011 06:32:53 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How can I tell if a web page is secure?</title><link>http://info.ssl.com/article.aspx?id=10068</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=left&gt;&lt;STRONG&gt;How can I tell if a web page is secure?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;HR&gt;&lt;BR&gt;Anytime a web page asks you for sensitive information, you need to be able to identify if the page is secure or not.  The ability to recognize a secure web connection is extremely important as online fraud cases have increased substantially from year to year.  This FAQ is intended to guide you to safer online shopping. &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR&gt;&lt;STRONG&gt;What exactly do we mean by "secure"?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Anytime you view a web site information is sent from your computer to the web server and from the web server to your computer.  The transmission of this information is normally sent in "plain text", meaning anyone would be able to read it should they see it.  Now consider this.  Each piece of information transmitted traverses many computers (servers) to reach its destination.&lt;/P&gt;&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;FONT color=#119911&gt;Try it!&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt; - Windows Users, to see just how many machines your information traverses, follow these steps:&lt;/P&gt;&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;&lt;P&gt;1) On your computer, click Start, then Run&lt;BR&gt;2) Type "cmd" and click "OK" (or press Enter)&lt;BR&gt;3) Type this in exactly:  tracert www.ssl.com&lt;BR&gt;4) Press Enter&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Each listing in the window is a different computer/router/switch (a "node" in networking terms).  Each "node" represents a point at which any data you send might be recorded!  It is not uncommon to see 20-30 listings.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Big deal, right?  Consider this the next time you type in a password or your credit card number.  Ah!  Therein lies the problem.  The solution to this problem is to encrypt this data for transmission.  Secure Sockets Layer (SSL) was created for this very purpose.&lt;/P&gt;&lt;P&gt;SSL uses a complex system of key exchanges between your browser and the server you are communicating with in order to encrypt the data &lt;STRONG&gt;before&lt;/STRONG&gt; transmittin</description><pubDate>Sat, 08 Oct 2011 14:17:11 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>DER vs. CRT vs. CER vs. PEM Certificates and How To Convert Them</title><link>http://info.ssl.com/article.aspx?id=12149</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;h2&gt;Certificates and Encodings&lt;/h2&gt;&lt;p&gt;At its core an X.509 certificate is a digital document that has been encoded and/or digitally signed according to RFC 5280.&lt;/p&gt;&lt;p&gt;In fact, the term &lt;em&gt;X.509 certificate&lt;/em&gt; usually refers to the IETF&amp;rsquo;s PKIX Certificate and &lt;a title="Certificate revocation list" href="http://en.wikipedia.org/wiki/Certificate_revocation_list" target="_blank"&gt;CRL&lt;/a&gt; Profile of the X.509 v3 certificate standard, as specified in &lt;a href="http://tools.ietf.org/html/rfc5280"&gt;RFC 5280&lt;/a&gt;, commonly referred to as PKIX for &lt;em&gt;Public Key Infrastructure (X.509)&lt;/em&gt;.&lt;/p&gt;&lt;h2&gt;X509 File Extensions&lt;/h2&gt;&lt;p&gt;The first thing we have to understand is what each type of file  extension is.   There is a lot of confusion about what DER, PEM, CRT,  and CER are and many have incorrectly said that they are all  interchangeable.  While in certain cases some can be interchanged the  best practice is to identify how your certificate is encoded and then  label it correctly.  Correctly labeled certificates will be much easier  to manipulat&lt;/p&gt;&lt;h3&gt;Encodings (also used as extensions)&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="color: #993300;"&gt;.DER&lt;/span&gt; = The DER extension is  used for binary DER encoded &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;certificates. These files may also bear  the CER or &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;the CRT extension.   Proper English usage would be &amp;ldquo;I  have a DER encoded certificate&amp;rdquo; not &amp;ldquo;I have a DER certificate&amp;rdquo;.&lt;/li&gt;&lt;li&gt;&lt;span style="color: #993300;"&gt;.PEM&lt;/span&gt; = The PEM extension is  used for different types of X.509v3 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;files which contain ASCII  (Base64) armored data prefixed &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;with a &amp;ldquo;&amp;mdash;&amp;ndash; BEGIN &amp;hellip;&amp;rdquo; line.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Common Extensions&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="color: #993300;"&gt;.CRT&lt;/span&gt; = The CRT extension is  used for certificates. The certificates &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;may be encoded as binary  DER or as ASCII PEM. The CER and &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;CRT extensions are nearly  synonymous.  Most common among *nix systems&lt;/li&gt;&lt;l</description><pubDate>Fri, 07 Oct 2011 10:38:31 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How do I install more than one Comodo CA bundle file (roots) on an Apache set up?</title><link>http://info.ssl.com/article.aspx?id=10741</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;PRE id=line1&gt;&lt;H1&gt;&lt;FONT face=Verdana size=4&gt;Installing your Certificate on Apache Mod_SSL / OpenSSL&lt;/FONT&gt;&lt;/H1&gt;&lt;H2&gt;&lt;FONT face=Verdana size=3&gt;Step one: Copy your certificate to file&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;&lt;FONT face=Verdana&gt;You will receive an email from Comodo with the certificate in the email (yourdomainname.crt). When viewed in a text editor, your certificate will look something like:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;-----BEGIN CERTIFICATE-----&lt;BR&gt;MIAGCSqGSIb3DQEHAqCAMIACAQExADALBgkqhkiG9w0BBwGggDCCAmowggHXAhAFUbM77e50M63v1Z2A/5O5MA0GCSqGSIb3DQEOBAUAMF8xCzAJBgNVBAYTAlVTMSAw(.......)E+cFEpf0WForA+eRP6XraWw8rTN8102zGrcJgg4P6XVS4l39+l5aCEGGbauLP5W6K99c42ku3QrlX2+KeDi+xBG2cEIsdSiXeQS/16S36ITclu4AADEAAAAAAAAA-----END CERTIFICATE-----&lt;/P&gt; &lt;P&gt;&lt;FONT face=Verdana&gt;Copy your Certificate into the directory that you will be using to hold your certificates. In this example we will use /etc/ssl/crt/. Both the public and private key files will already be in this directory. The private key used in the example will be labeled private.key and the public key will be yourdomainname.crt. It is recommended that you make the directory that contains the private key file only readable by root. &lt;/FONT&gt;&lt;/P&gt;&lt;H2&gt;&lt;FONT face=Verdana size=3&gt;Step two: Install the Intermediate Certificate&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;&lt;FONT face=Verdana&gt;You will need to install the Intermediate CA certificates in order for browsers to trust your certificate. The Intermediate CA certificates are contained within the ca-bundle file that was attached to your email in the zip file (for this article renamed to SERVERNAME.ca-bundle). See the attachments section of this article if you do not have this file.  In the relevant Virtual Host section for your site, you will need to complete the following in get this file correctly reference: &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR&gt;&lt;FONT face=Verdana&gt;Copy the SERVERNAME.ca-bundle file to the same directory as certificate and key files.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR&gt;&lt;FONT face=Verdana&gt;Add the following line to the SSL section of the h</description><pubDate>Fri, 07 Oct 2011 10:17:44 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How do I get SSL on my website?</title><link>http://info.ssl.com/article.aspx?id=10694</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;There are four steps involved in procuring and installing a SSL server certificate, thus enabling SSL to provide security to your site. These steps are: 1) Purchase SSL Certificate(s), 2) generate a CSR, 3) enroll for a SSL server certificate, and 4) install the SSL server cerificate.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Purchase SSL Certificate(s)&lt;/STRONG&gt;&lt;BR&gt;The first step is to purchase a SSL certificate. You have access to a wide variety of SSL certificates that differ from each other based on brand and features. To get started with the process of choosing the right SSL solution for you, &lt;A href="https://www.ssl.com/certificates"&gt;click here&lt;/A&gt;. Once you have purchased 1 or more SSL certicates (discounts may apply for bulk purchases, ask for details) you can manage them through your SSL.com account. An SSL.com account is created for you automatically when you make a purchase on SSL.com. The purchased SSL certificates will appear as unused credits in your SSL.com account, and these credits can be used on demand. When you are ready to use a credit and implement SSL on your site(s), go to Step 2).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) Generate a CSR&lt;/STRONG&gt;&lt;BR&gt;From the web server that will be SSL enabled, generate a CSR (Certificate Signing Request) and save the CSR to a text file. For detailed CSR generation instructions based on which brand of web server you are using, click the following link: &lt;A href="http://info.ssl.com/default.aspx?cNode=8N8H6U&amp;pNodes=8P3K3M"&gt;CSR Generation Instructions&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3) Enroll for a SSL server certificate&lt;BR&gt;&lt;/STRONG&gt;Log into your SSL.com account, and find an unused SSL certificate credit and select "process certificate". (see figure below) &lt;BR&gt;&lt;IMG alt="Select and unused credit" hspace=0 src="http://www.ssl.com/images/screenshots/new_cert.gif" align=baseline border=0&gt;&lt;/P&gt;&lt;P&gt;When prompted, copy and paste the CSR text that was created in Step 2) into the textbox and select the server software used to create the CSR. If you do not find your software l</description><pubDate>Wed, 05 Oct 2011 13:06:51 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Generate a CSR for OpenSSL</title><link>http://info.ssl.com/article.aspx?id=10082</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;SPAN id=_ctl1_ArticleRepeater__ctl1_ArticleText&gt;A CSR is a file containing your certificate application information, including your Public Key. Generate your CSR and then copy and paste the CSR file into the webform in the enrollment process:&lt;P&gt;Generate keys and certificate:&lt;/P&gt;&lt;P&gt;To generate a pair of private key and public Certificate Signing Request (CSR) for a webserver, "server", use the following command :&lt;/P&gt;&lt;P&gt;       openssl req -new -nodes -keyout myserver.key -out server.csr -newkey rsa:2048&lt;/P&gt;&lt;P&gt;This creates a two files. The file myserver.key contains a private key; do not disclose this file to anyone. Carefully protect the private key.&lt;/P&gt;&lt;P&gt;In particular, be sure to backup the private key, as there is no means to recover it should it be lost. The private key is used as input in the command to generate a Certificate Signing Request (CSR).&lt;/P&gt;&lt;P&gt;You will now be asked to enter details to be entered into your CSR. &lt;BR&gt;What you are about to enter is what is called a Distinguished Name or a DN. &lt;/P&gt;&lt;P&gt;For some fields there will be a default value, If you enter '.', the field will be left blank. &lt;/P&gt;&lt;P&gt;       ----- &lt;BR&gt;       Country Name (2 letter code) [US]: US&lt;BR&gt;       State or Province Name (full name) []: Texas&lt;BR&gt;       Locality Name (eg, city) []: Houston&lt;BR&gt;       Organization Name (eg, company) []: Your Company Inc&lt;BR&gt;       Organizational Unit Name (eg, section) []: Your Department&lt;BR&gt;       Common Name (eg, YOUR name) []: secure.yourcompanyname.com&lt;BR&gt;       Email Address []:&lt;/P&gt;&lt;P&gt;Please enter the following 'extra' attributes to be sent with your certificate request&lt;/P&gt;&lt;P&gt;       A challenge password []: &lt;BR&gt;       An optional company name []:&lt;BR&gt;        ----- &lt;/P&gt;&lt;P&gt;Use the name of the webserver as Common Name (CN). If the domain name is mydomain.com append the domain to the hostname (use the fully qualified domain name).&lt;/P&gt;&lt;P&gt;The fields email address, optional company name and challenge password can be left blank for a </description><pubDate>Mon, 19 Sep 2011 06:48:27 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What port is recommended to use SSL over?</title><link>http://info.ssl.com/article.aspx?id=10728</link><description>&lt;B&gt;Abstract:&lt;/B&gt; For maximum compatibility between SSL points, port 443 is the standard, thus recommended, port used for secured SSL communications. However, any port can be used.</description><pubDate>Sat, 20 Aug 2011 10:33:44 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>A banking site I access on the Internet has an initial page that asks for my userid and my password.  There is a padlock symbol by where I enter the data however, the page indicates http and not https. Can I be sure data entered on a page that does not show https is secure when the padlock symbol is displayed?</title><link>http://info.ssl.com/article.aspx?id=12145</link><description>&lt;B&gt;Abstract:&lt;/B&gt; No, the padlock you see is probably an image that anyone can place there. Look for the https like you indicated in order to be sure ssl is enabled and activated.</description><pubDate>Sat, 20 Aug 2011 10:26:11 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>After I purchase and install the SSL certificate do I need to put my files (jsp, html, asp, images, etc.) in a special directory to force the users to go through the "https" of my site?</title><link>http://info.ssl.com/article.aspx?id=10739</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;It depends on how your server software is set up. Most server software packages SSL enable an entire site as opposed to a specific directory. As a result, you usually do not have to place your web files in a special directory. However, if you do want a special directory to be SSL enabled, you should be able to create a "sub site" and SSL enable that site. Then you can turn on a setting on the server software that will force users to use https. &lt;/P&gt;&lt;P&gt;For instance, IIS has a setting that you can manipulate that will force users to type https. If they do not, then a page will appear telling the user that https is required. On the other hand, Resin will simply change http to https without the user having to do anything. in a nutshell, it all depends on the server software you are using. &lt;/P&gt;</description><pubDate>Tue, 30 May 2006 16:53:35 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is spyware? How can I detect spyware on my computer?</title><link>http://info.ssl.com/article.aspx?id=10707</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;Generally speaking, spyware refers to any computer program that gathers information about a person without his or her knowledge. Spyware programs can track your Internet page views, allow someone else to read your email, and even record your keyboard strokes. They are obviously cause for alarm. &lt;P&gt;There are several resources to detect and remove spyware, such as 2-Spyware.Com and SpyChecker.Com, which offer information about the most common spyware programs, as well as anti-spyware downloads. Spyware Watch offers a general tutorial on detecting and removing spyware programs. &lt;/P&gt;</description><pubDate>Wed, 12 Apr 2006 12:46:34 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>I can't access my online email inbox.</title><link>http://info.ssl.com/article.aspx?id=10119</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;&lt;STRONG&gt;I can't access my online email inbox. After I enter my username and password correctly and click on "Log In" it loads for a few seconds and says done and a lock appears next to the loading bar.When i highlight it it says SSL Secured 128 Bit. Whats wrong with my Internet Explorer?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, we have no relationship with your online email account. Access to your online email via Hotmail, Yahoo, Gmail, etc. is not determined by the SSL protocol. As a result, we cannot assist you in accessing your online email.&lt;/P&gt;</description><pubDate>Wed, 12 Apr 2006 11:54:07 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Install a Certificate on Microsoft IIS 5.x / 6.x</title><link>http://info.ssl.com/article.aspx?id=10038</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;1. Installing the Root &amp;amp; Intermediate Certificates:&lt;/P&gt;&lt;P&gt;&lt;BR&gt;You will have received 3 Certificates from SSL.com. Save these Certificates to the desktop of the webserver machine, then:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Click the &lt;STRONG&gt;Start Button&lt;/STRONG&gt; then selct Run and type &lt;EM&gt;mmc&lt;/EM&gt; &lt;/LI&gt;&lt;LI&gt;Click &lt;STRONG&gt;File&lt;/STRONG&gt; (or &lt;STRONG&gt;Console&lt;/STRONG&gt;, depending on what options are available) and select &lt;STRONG&gt;Add/Remove Snap in&lt;/STRONG&gt; &lt;/LI&gt;&lt;LI&gt;Select &lt;STRONG&gt;Add&lt;/STRONG&gt;, select &lt;STRONG&gt;Certificates&lt;/STRONG&gt; from the &lt;STRONG&gt;Add Standalone Snap-in&lt;/STRONG&gt; box and click &lt;STRONG&gt;Add&lt;/STRONG&gt; &lt;/LI&gt;&lt;LI&gt;&lt;FONT color=#ff1111&gt;IMPORTANT!&lt;/FONT&gt; Select &lt;STRONG&gt;Computer Account&lt;/STRONG&gt; and click &lt;STRONG&gt;Finish&lt;/STRONG&gt; (&lt;FONT color=#ff1111&gt;if &lt;STRONG&gt;Computer Account&lt;/STRONG&gt; is not selected, certificates will not be properly installed&lt;/FONT&gt;)&lt;/LI&gt;&lt;LI&gt;Close the &lt;STRONG&gt;Add Standalone Snap-in&lt;/STRONG&gt; box, click &lt;STRONG&gt;OK&lt;/STRONG&gt; in the &lt;STRONG&gt;Add/Remove Snap in&lt;/STRONG&gt; &lt;/LI&gt;&lt;LI&gt;Return to the &lt;STRONG&gt;MMC&lt;/STRONG&gt; &lt;/LI&gt;&lt;LI&gt;To install the &lt;STRONG&gt;GTECyberTrustRoot  &lt;/STRONG&gt;certificate (see Related Articles section below if you do not have the &lt;STRONG&gt;GTECyberTrustRoot  &lt;/STRONG&gt;certificate readily available): &lt;BR&gt;&lt;BR&gt;&lt;IMG alt="IIS 5.0" hspace=0 src="http://www.instantssl.com/ssl-certificate-images/graphics/ssl-IISRootInstall2.gif" align=baseline border=0&gt;&lt;BR&gt;&lt;BR&gt;&lt;/LI&gt;&lt;LI&gt;Right click the Trusted &lt;EM&gt;Root Certification Authorities&lt;/EM&gt;, select &lt;STRONG&gt;All Tasks&lt;/STRONG&gt;, select &lt;STRONG&gt;Import&lt;/STRONG&gt;. &lt;BR&gt;&lt;BR&gt;&lt;IMG alt=IIS hspace=0 src="http://www.instantssl.com/ssl-certificate-images/graphics/ssl-IISRootImport3.gif" align=baseline border=0&gt;&lt;BR&gt;&lt;BR&gt;&lt;/LI&gt;&lt;LI&gt;click &lt;STRONG&gt;Next&lt;BR&gt;&lt;BR&gt;&lt;IMG alt=IIS hspace=0 src="http://www.instantssl.com/ssl-certificate-images/graphics/ssl-IISRootImport4.gif" align=baseline border=0&gt;&lt;BR&gt;&lt;BR&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Locate the &lt;STRONG&gt;GTECyberTrustRoot&lt;/STRONG&gt; certificate and click &lt;STRONG&gt;Next&lt;/STRONG&gt;. &lt;/LI&gt;&lt;LI&gt;W</description><pubDate>Fri, 07 Apr 2006 06:06:46 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>The TLS Protocol Version 1.1</title><link>http://info.ssl.com/article.aspx?id=10703</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;EM&gt;See Related External Links below:&lt;/EM&gt;</description><pubDate>Wed, 05 Apr 2006 06:34:48 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>READ ME - IMPORTANT</title><link>http://info.ssl.com/article.aspx?id=10699</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;We have recently launched a new site to allow users with questions concerning SSL and SSL certificates to post those questions on an open discussion forum. This open forum will provide for a quicker response time in getting accurate answers in a timely manner.&lt;/P&gt;&lt;P&gt;This new site is the SSL.com Forums site located at &lt;A href="http://forums.ssl.com/"&gt;http://forums.ssl.com&lt;/A&gt;. If you have an SSL or SSL certificate related question, please post it on the SSL.com Forums. Our staff answers questions on the forums on a reuglar basis, but other knowledgeable source might offer some assistance as well. It is open to everyone so please do take a moment to peruse the site to see what others might have posted in relation to your question(s). &lt;/P&gt;&lt;P&gt;The SSL.com Knowledge Base will continue to serve as a resource of articles and FAQs related to SSL technology, but we will also pull commonly asked questions from the SSL.com Forums to be posted here.&lt;/P&gt;</description><pubDate>Tue, 04 Apr 2006 17:39:23 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>I need to correct a Common Name on a certificate you issued. The common name is clearly not a vaild URL, yet was accepted by a confused customer.</title><link>http://info.ssl.com/article.aspx?id=10334</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Simply log into your SSL.com and click the "reprocess certificate" link. When you are prompted for the new CSR, copy and paste it into the textbox, and submit it.</description><pubDate>Tue, 04 Apr 2006 17:34:52 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is the Common Name?</title><link>http://info.ssl.com/article.aspx?id=10048</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;&lt;STRONG&gt;Understanding the Common Name&lt;/STRONG&gt; &lt;BR&gt;Before you can enroll for a SSL Server Certificate, you must generate a CSR from your webserver software. During the creation of the CSR, the following fields must be entered: Organization (O), Organizational Unit (OU), Country (C), State (S), Locality (L), and Common Name (CN). The Common Name field is often misunderstood and is filled out incorrectly. &lt;/P&gt;&lt;P&gt;The Common Name is typically composed of Host + Domain Name and will look like "&lt;FONT color=#1111bb&gt;www.yoursite.com&lt;/FONT&gt;" or "&lt;FONT color=#1111bb&gt;yoursite.com&lt;/FONT&gt;". SSL Server Certificates are specific to the Common Name that they have been issued to at the Host level. The Common Name must be the same as the Web address you will be accessing when connecting to a secure site. For example, a SSL Server Certificate for the domain "&lt;FONT color=#1111bb&gt;domain.com&lt;/FONT&gt;" will receive a warning if accessing a site named "&lt;FONT color=#1111bb&gt;www.domain.com&lt;/FONT&gt;" or "&lt;FONT color=#1111bb&gt;secure.domain.com&lt;/FONT&gt;", as "&lt;FONT color=#1111bb&gt;www.domain.com&lt;/FONT&gt;" and "secure.domain.com" are different from "domain.com". You would need to create a CSR for the correct Common Name. When the Certificate will be used on an Intranet (or internal network), the Common Name may be one word, and it can also be the name of the server.&lt;BR&gt;&lt;/P&gt;</description><pubDate>Tue, 04 Apr 2006 17:33:58 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>I received a notice that my certificate is expiring.  How do I renew?</title><link>http://info.ssl.com/article.aspx?id=10039</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;&lt;STRONG&gt;I received a notice that my certificate is expiring.  How do I renew my certificate?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;HR&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you received an notice that your certificate is expiring or has expired, you will need to renew that certificate.  To do this, log into your SSL.com account.&lt;/P&gt;&lt;P&gt;Once logged in, your certificates will be listed on the right side of the page.  Any certificates that are expiring soon (or have already expired) will have a link to "Renew".  Click this link and follow the instructions that follow.&lt;/P&gt;&lt;P&gt;Note:  You will need to generate a new CSR from your web server to complete this process.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If you cannot remember your password, click the link "Lost Password?" to have a new temporary password emailed to you.  Please remember to change your password once logged in.&lt;/P&gt;&lt;P&gt;If you cannot remember your username, email us at &lt;A href="mailto:sales@ssl.com"&gt;sales@ssl.com&lt;/A&gt; and we will help you.&lt;/P&gt;</description><pubDate>Tue, 04 Apr 2006 17:33:29 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is your Replacement Policy for SSL server certificates?</title><link>http://info.ssl.com/article.aspx?id=10081</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;Depending on which SSL certificate you purchased, the reissue policy can range from 7 days to the lifetime of the SSL certificate. When you are ready to reprocess, simply log into your account, and click the "reprocess ssl certificate" link next to the SSL certificate that appears in you account. See the specific product for more details.&lt;/P&gt;</description><pubDate>Tue, 04 Apr 2006 17:31:41 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Install a Certificate on Website Pro 3.x</title><link>http://info.ssl.com/article.aspx?id=10057</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;When your certificate is issued you will receive 3 certificates:&lt;BR&gt;Yourdomain.crt&lt;BR&gt;ComodoClass3SecurityServicesCA.crt&lt;BR&gt;GTECyberTrustRootCA.crt &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add the ComodoClass3SecurityServicesCA.crt certificate as Trusted Roots: &lt;BR&gt;&lt;IMG alt="Website Pro" hspace=0 src="http://www.instantssl.com/ssl-certificate-images/graphics/ssl-websitepro8.gif" align=baseline border=0&gt;&lt;BR&gt;&lt;/LI&gt;&lt;LI&gt;Then attach each certificate in turn to your website's Key Pair in the following order. At this point your Key Pair will be black.:&lt;BR&gt;&lt;EM&gt;Yourdomain.crt&lt;BR&gt;ComodoClass3SecurityServicesCA.crt&lt;BR&gt;GTECyberTrustRootCA.crt &lt;BR&gt;&lt;IMG alt="Website Pro" hspace=0 src="http://www.instantssl.com/ssl-certificate-images/graphics/ssl-websitepro9.gif" align=baseline border=0&gt;&lt;BR&gt;&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;Your Key Pair will now turn green. &lt;/LI&gt;&lt;LI&gt;Stop and Start the server, your site can now be found using the https entry &lt;BR&gt;&lt;/LI&gt;&lt;/UL&gt;</description><pubDate>Tue, 04 Apr 2006 17:14:19 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Since Yahoo has added your feature to its site I cannot log into it. This is also the same problem I'm having with e-bay. Thank You</title><link>http://info.ssl.com/article.aspx?id=10340</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;This question has been answered. Please see the "Related Articles" Section for the corresponding answer to this question.&lt;/P&gt;</description><pubDate>Thu, 30 Mar 2006 15:51:32 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>I lost the password to my SSL certificate. What should I do? How can I get my SSL password ?</title><link>http://info.ssl.com/article.aspx?id=10159</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;If you lost your SSL password that you used to create the SSL certificate, then you will have to create a new SSL certificate.&lt;/P&gt;</description><pubDate>Thu, 30 Mar 2006 15:47:29 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>I cannot connect to a secured sight. It always says 'page cannot be found'. What should I do? Thanks in advance.</title><link>http://info.ssl.com/article.aspx?id=10337</link><description>&lt;B&gt;Abstract:&lt;/B&gt; The mostly likely scenario is that the website is not SSL-enabled, or the SSL is not funtioning properly on the website. There is nothing you can do on the client end other than notify the site's administrator that there may be a problem with the site's SSL.</description><pubDate>Thu, 30 Mar 2006 15:35:01 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is the protocol to follow if someone finds a website collecting credit card information without being in a secured environment? I've been searching the web everywhere to see if there is somewhere to report such sites.Thanks in advance for any info you may have!Susan Merrow</title><link>http://info.ssl.com/article.aspx?id=10339</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;There really is no law(s) that dictates the requirements to use of collecting sensitive information in an unencrypted manner. You should first contact the website that is in violation, and notify them that are not doing enough to protect consumers information. If the website is certified in any way, you may be able to report the website to the auditing organization that oversees the certification of that particular website.&lt;/P&gt;&lt;P&gt;If that fails, you should use your best judgement and simply consider if it's worth doing business with an online organization that you feel is not taking enough measures to earn your trust and protect your privacy. &lt;/P&gt;&lt;P&gt;Certain organizations are taking proactive steps to ensure that partner sites do incorporate certain measures to ensure protection of consumer trust and privacy. Visa and Mastercard require implementation of SSL on websites that accept Visa and Mastercard credit cards, and HIPAA compliance dictates that SSL be used on websites that accept sensitive patient information online. These are just a few examples of what is happening across many different industries doing business on the Internet.&lt;/P&gt;</description><pubDate>Thu, 30 Mar 2006 14:01:46 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>My SSL has been disabled for some reason. How do I enable it again?</title><link>http://info.ssl.com/article.aspx?id=10335</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;If you are referring to when you view a site through your web browser, and your SSL session is terminated, then check to be sure that the URL you are using begins with 'https' as opposed to 'http'. If the page does not show up with a 'Page Cannot Be Displayed" error, and your URL does begin with 'https', then that page is no accessible through the SSl protocol.&lt;/P&gt;&lt;P&gt;If you are referring to your SSL certificate installed on your server, then there could be a number of reasons. Is the firewall allowing traffic through port 443? Did you delete the SSL certificate files? Is there a configuration change on your server software? There are too many possible reasons to list here. Do a refined search on this knowledge base to determine what the cause may be.&lt;/P&gt;</description><pubDate>Thu, 30 Mar 2006 13:48:27 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Why do I receive a pop-up box stating that some pages are secured when others are not, even though all of the pages reside underneath the domain using the SSL certificate. All of the pages are using relative links.</title><link>http://info.ssl.com/article.aspx?id=10161</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Be sure that all hyperlinks (ie &amp;lt;a href=""&amp;gt; and &amp;lt;img src=""&amp;gt;) are using relative links or absolute links with "https:" set as the protocol. You must be referencing some absolute links with "http:" as the protocol instead of "https:".</description><pubDate>Mon, 13 Mar 2006 07:50:20 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>"This page contains both secure and non-secure items."</title><link>http://info.ssl.com/article.aspx?id=10058</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;&lt;STRONG&gt;You are receiving the warning "This page contains both secure and non-secure items." when visiting your secure web site through Internet Explorer.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;HR&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a &lt;STRONG&gt;client side message&lt;/STRONG&gt; most likely caused by a reference in your HTML to a non-secured item.&lt;/P&gt;&lt;P&gt;All references in the secure page need to point to "https://".  The easiest way to accomplish this is to use relative links instead of absolute links.  Commonly overlooked items include:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Images&lt;/LI&gt;&lt;LI&gt;Linked stylesheets&lt;/LI&gt;&lt;LI&gt;Frames, iFrames&lt;/LI&gt;&lt;LI&gt;Objects (such as Flash, Shockwave,...)&lt;/LI&gt;&lt;LI&gt;Scripts&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Any of these HTML elements can trigger the warning message.  If you are using resources from a third party, you may need to contact them for instructions on using their product on a secured web page.&lt;/P&gt;&lt;P&gt;The most frequent cause of this message seems to be embedded Macromedia Flash movies.  Simply change the "CODEBASE" attribute in the "OBJECT" tag to refer to "https" to solve this problem.  For more information, follow this link:&lt;BR&gt;&lt;A href="http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=view&amp;amp;id=KC.tn_16588&amp;amp;extid=tn_16588&amp;amp;dialogID=19204476"&gt;http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=view&amp;amp;id=KC.tn_16588&amp;amp;extid=tn_16588&amp;amp;dialogID=19204476&lt;/A&gt;&lt;/P&gt;&lt;P&gt;IFrames can also cause this message.  For more information on the IFrame issue follow this link:&lt;BR&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;en-us;261188"&gt;http://support.microsoft.com/default.aspx?scid=kb;en-us;261188&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Another source of this warning message is the use of "javascript:OpenURL();" in an anchor tag.  For more information regarding the use of Javascript in anchor tags follow this link:&lt;BR&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;en-us;269682"&gt;http://support.microsoft.com/default.aspx?scid=kb;e</description><pubDate>Mon, 13 Mar 2006 07:45:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Can only text data be encrypted using SSL? Can pictures can be also encrypted? How does SSl work?</title><link>http://info.ssl.com/article.aspx?id=10239</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;Yes you can encrypt all data including images, but that will increase response time due the fact that many calculations are taking place and using computing cycles. It's best to only encrypt when necessary. &lt;/P&gt;&lt;P&gt;SSL uses public key cryptography to provide authentication, and secret key cryptography and digital signatures to provide for privacy and data integrity.&lt;/P&gt;</description><pubDate>Fri, 10 Mar 2006 12:12:42 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>I am getting error ssl 1011.How can solve this?Thanks</title><link>http://info.ssl.com/article.aspx?id=10236</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;Are you referring to Ctrix? If so, click here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.citrix.com/kb/entry.jspa?externalID=CTX736482"&gt;http://support.citrix.com/kb/entry.jspa?externalID=CTX736482&lt;/A&gt;&lt;/P&gt;</description><pubDate>Fri, 10 Mar 2006 11:57:42 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is SSL?</title><link>http://info.ssl.com/article.aspx?id=10241</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;SSL (Secure Sockets Layer) is the standard security technology for establishing an encrypted link between a web server and a browser. This link ensures that all data passed between the web server and browsers remain private and integral. SSL is an industry standard and is used by millions of websites in the protection of their online transactions with their customers. &lt;/P&gt;&lt;P&gt;To be able to create an SSL connection a web server requires an SSL Certificate. When you choose to activate SSL on your web server you will be prompted to complete a number of questions about the identity of your website and your company. Your web server then creates two cryptographic keys - a Private Key and a Public Key. &lt;/P&gt;&lt;P&gt;The Public Key does not need to be secret and is placed into a Certificate Signing Request (CSR) - a data file also containing your details. You should then submit the CSR. During the SSL Certificate application process, the Certification Authority will validate your details and issue an SSL Certificate containing your details and allowing you to use SSL. Your web server will match your issued SSL Certificate to your Private Key. Your web server will then be able to establish an encrypted link between the website and your customer's web browser. &lt;/P&gt;&lt;P&gt;The complexities of the SSL protocol remain invisible to your customers. Instead their browsers provide them with a key indicator to let them know they are currently protected by an SSL encrypted session - the lock icon in the lower right-hand corner, clicking on the lock icon displays your SSL Certificate and the details about it. All SSL Certificates are issued to either companies or legally accountable individuals. &lt;/P&gt;&lt;P&gt;Typically an SSL Certificate will contain your domain name, your company name, your address, your city, your state and your country. It will also contain the expiration date of the Certificate and details of the Certification Authority responsible for the issuance of the Certificate. When </description><pubDate>Fri, 10 Mar 2006 11:57:13 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Why do I need an SSL Certificate?</title><link>http://info.ssl.com/article.aspx?id=10243</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;There are many security risks involved with conducting e-commerce. In today’s world security is expected to be provided on any website a consumer uses; as a result consumers expect any information they provide over the Internet will remain private and accurate. For most consumers, the only way they will ever consider buying your products or services online are when they are satisfied their personal information is secure. &lt;/P&gt;&lt;P&gt;Using SSL certificates to secure your online transactions will indicate to the customer that they are dealing with a reputable company or organization that has been authenticated by a trusted third-party. The customer will visibly see that their online transaction will be secure, from the lock icon on their web browser. This will give reassure them that you have removed the risk associated with making transactions over the Internet.&lt;/P&gt;</description><pubDate>Fri, 10 Mar 2006 11:55:10 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Can you use an alias for your webserver in an SSL Certificate?</title><link>http://info.ssl.com/article.aspx?id=10251</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Yes, you can use a server alias (or any other name that has characters which conform to the character requirements of the certificate issuer) in an SSL certificate, but it would only be useful in a local or intranet environment. Using a fully qualified domain name (FQDN) that you have registered with a proper domain name registrar will ensure that your SSL certificate will work on a global level on the Internet.</description><pubDate>Fri, 10 Mar 2006 11:51:45 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Is SSL only 128 bit?</title><link>http://info.ssl.com/article.aspx?id=10249</link><description>&lt;B&gt;Abstract:&lt;/B&gt; No, there are other strengths such as 40 bit and 256 bit.</description><pubDate>Fri, 10 Mar 2006 11:51:06 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary Index</title><link>http://info.ssl.com/article.aspx?id=10204</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:21:21 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - H</title><link>http://info.ssl.com/article.aspx?id=10212</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:21:03 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - I</title><link>http://info.ssl.com/article.aspx?id=10213</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:20:34 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - L</title><link>http://info.ssl.com/article.aspx?id=10215</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:20:08 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - G</title><link>http://info.ssl.com/article.aspx?id=10211</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:19:41 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - F</title><link>http://info.ssl.com/article.aspx?id=10210</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:19:15 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - C</title><link>http://info.ssl.com/article.aspx?id=10207</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:18:53 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - D</title><link>http://info.ssl.com/article.aspx?id=10208</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:18:30 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - E</title><link>http://info.ssl.com/article.aspx?id=10209</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:18:14 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - B</title><link>http://info.ssl.com/article.aspx?id=10206</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:16:17 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>SSL Glossary - A</title><link>http://info.ssl.com/article.aspx?id=10205</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P align=center&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10205"&gt;&lt;FONT size=1&gt;A&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10206"&gt;&lt;FONT size=1&gt;B&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10207"&gt;&lt;FONT size=1&gt;C&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10208"&gt;&lt;FONT size=1&gt;D&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10209"&gt;&lt;FONT size=1&gt;E&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10210"&gt;&lt;FONT size=1&gt;F&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10211"&gt;&lt;FONT size=1&gt;G&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10212"&gt;&lt;FONT size=1&gt;H&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10213"&gt;&lt;FONT size=1&gt;I&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10230"&gt;&lt;FONT size=1&gt;J&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10214"&gt;&lt;FONT size=1&gt;K&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10215"&gt;&lt;FONT size=1&gt;L&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10216"&gt;&lt;FONT size=1&gt;M&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10217"&gt;&lt;FONT size=1&gt;N&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10218"&gt;&lt;FONT size=1&gt;O&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10219"&gt;&lt;FONT size=1&gt;P&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10229"&gt;&lt;FONT size=1&gt;Q&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=10220"&gt;&lt;FONT size=1&gt;R&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=1&gt; | &lt;/FONT&gt;&lt;A href="http://info.ssl.com/ssl_kb/article.aspx?id=1</description><pubDate>Tue, 03 May 2005 09:15:53 GMT</pubDate><dc:creator>Administrator</dc:creator></item></channel></rss>
