<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Self Signed SSL Certificate</title>
	<atom:link href="http://www.selfsignedsslcertificate.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.selfsignedsslcertificate.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Apr 2012 19:00:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Self-Signed SSL Certificates</title>
		<link>http://www.selfsignedsslcertificate.com/?p=14</link>
		<comments>http://www.selfsignedsslcertificate.com/?p=14#comments</comments>
		<pubDate>Mon, 22 Aug 2011 08:10:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SELF SIGNED SSL CERTIFICATES]]></category>
		<category><![CDATA[SSL Certificates]]></category>

		<guid isPermaLink="false">http://www.selfsignedsslcertificate.com/?p=14</guid>
		<description><![CDATA[Introduction: Abbreviated as Secure Sockets Layer, SSL is an encryption technology created by Netscape and is used to create an encrypted connection between your web server and web browser of the visitor, thereby building a pathway for private information to be transmitted without the problems of eavesdropping, data tampering, or message forgery. An SSL Certificate [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction:</strong></p>
<p>Abbreviated as Secure Sockets Layer, SSL is an encryption technology created by Netscape and is used to create an encrypted connection between your web server and web browser of the visitor, thereby building a pathway for private information to be transmitted without the problems of eavesdropping, data tampering, or message forgery. An SSL Certificate is required to be identified and installed on the server in order to enable SSL on a website. It is usually indicated by a padlock icon in web browsers but it can also be indicated by a green address bar. Upon having it installed, the site can be securely accessed by changing the URL from http:// to https://.</p>
<p>In order to establish an encrypted connection between a client and a server, an SSL certificate is are important. Webmasters build secure websites like e-commerce websites using encrypted connections, thereby preventing eavesdropping by providing extra protection.<br />
Process of creating a <a href="http://www.selfsignedsslcertificate.com/">self signed SSL Certificate</a>:<br />
SSL is said to use asymmetric cryptography or public key cryptography (PKI), where two keys are created, one public, one private. Anything which is encrypted with either of the two keys will only be decrypted with its corresponding key. Therefore if the private key of a server is used to encrypt a message or data stream, it can only be decrypted by using its corresponding public key, thereby ensuring that the data only could have come from the server. The following steps are to be followed to create a self-signed certificate:</p>
<p>Step 1: <strong>Generation of a Private Key:</strong></p>
<p>In order to generate an RSA Private Key and CSR (Certificate Signing Request), the openssl toolkit is used, which can also be used to generate self-signed certificates for testing purposes or internal usage. The first step is to create your RSA Private Key, a 1024 bit RSA key which is encrypted using Triple-DES and stored in a PEM format so that it is readable as ASCII text. For this purpose, the following command may be used –</p>
<p>openssl genrsa -des3 -out server.key 1024</p>
<p>Step 2: <strong>Generation of a CSR (Certificate Signing Request):</strong></p>
<p>Following the generation of a private key, a Certificate Signing Request (CSR) is to be generated. A CSR is reportedly used in one of two ways –</p>
<p>* First, it is sent to a Certificate Authority, such as Thawte or Verisign, wherein the requestor’s identity is verified, after which a signed certificate is issued.<br />
* Second, the CSR is to be self-signed</p>
<p>A CSR may be generated by using the following command –</p>
<p>openssl req -new -key server.key -out server.csr</p>
<p>Step 3: <strong>Passphrase is removed from Key</strong></p>
<p>One side-effect of the pass-phrased private key is that a pass-phrase is asked for each time the web server is started. Since it is inconvenient, an external program may be used in place of the built-in pass-phrase dialog, although it is not necessarily secure.  The Triple-DES encryption can also be removed from the key, thereby eliminating the need to type in a pass-phrase. With the private key no longer encrypted, it is critical that only the root user reads this file. The corresponding certificate will need to be revoked, in case of a system compromise where a third party obtains the unencrypted private key. The following command may be used to remove the pass-phrase from the key:</p>
<p>cp server.key server.key.org<br />
openssl rsa -in server.key.org -out server.key</p>
<p>Step 4: <strong>Generation of a Self-Signed Certificate</strong></p>
<p>At this point, a <a href="http://www.selfsignedsslcertificate.com/">self signed ssl certificate</a> is to be generated. An error is generated in the client browser by this temporary certificate to the effect that the signing certificate authority is unknown and not trusted. The following command may be used to generate a temporary certificate –</p>
<p>openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt</p>
<p>Step 5:<strong> Installation of the Private Key and Certificate</strong></p>
<p>With the installation of Apache with mod_ssl, several directories are created in the Apache config directory. The location of this directory will differ depending on how Apache was compiled.</p>
<p>cp server.crt /usr/local/apache/conf/ssl.crt<br />
cp server.key /usr/local/apache/conf/ssl.key</p>
<p>Step 6: <strong>Configuration of SSL Enabled Virtual Hosts</strong></p>
<p>SSLEngine on<br />
SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt<br />
SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key<br />
SetEnvIf User-Agent &#8220;.*MSIE.*&#8221; nokeepalive ssl-unclean-shutdown<br />
CustomLog logs/ssl_request_log \<br />
&#8220;%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \&#8221;%r\&#8221; %b&#8221;</p>
<p>Step 7: <strong>Restart Apache and Test</strong></p>
<p>/etc/init.d/httpd stop<br />
/etc/init.d/httpd stop</p>
<p>https://public.akadia.com</p>
<p>&nbsp;</p>
<p>Find some useful resources for <a href="http://www.justparalegalcertification.com/">paralegal certification</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.selfsignedsslcertificate.com/?feed=rss2&#038;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self-signed SSL certificates are a big No.</title>
		<link>http://www.selfsignedsslcertificate.com/?p=10</link>
		<comments>http://www.selfsignedsslcertificate.com/?p=10#comments</comments>
		<pubDate>Wed, 06 Apr 2011 15:13:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SELF SIGNED SSL CERTIFICATES]]></category>
		<category><![CDATA[SSL Certificates]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.selfsignedsslcertificate.com/?p=10</guid>
		<description><![CDATA[There is no chain of trust if you’re using self signed SSL certificates. The certificates have to sign by you and then you have to get them verified, you signing them alone will not help. The browser will show a warning by telling you that the web site certificates have not been verified. Therefore, you [...]]]></description>
			<content:encoded><![CDATA[<p>There is no chain of trust if you’re using self signed SSL certificates. The certificates have to sign by you and then you have to get them verified, you signing them alone will not help. The browser will show a warning by telling you that the web site certificates have not been verified. Therefore, you cannot use the self-signed certificates for professional purposes as none of them will trust your web site to be safe and so will they consider your company too.</p>
<p>To run a web site, self-signed SSL certificates is necessary by using the HTTPS protocol for a professional web site, you can buy a certificate and get it authorized from the concerned authorities, even higher and more credible certificates are signed.</p>
<p>Also, there is a problem by using a self-signed SSL certificate since every Web browser checks for an https connection and is signed by a particular CA. If the connection is self-signed, this will be flagged as potentially risky and error messages will start popping up often cautioning the visitor and he might be your customer too. </p>
<p>The authority certificates tell customers that the server information has been verified by trusted sources.  verisign is the most commonly used certificates by the CA. Depending upon which CA is used, the field is verified and certificates are issued. The CAs will verify the reality of your business site and the ownership of the area and provide a little more security and also assuring your customers that the site is legitimate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.selfsignedsslcertificate.com/?feed=rss2&#038;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSL Certificates</title>
		<link>http://www.selfsignedsslcertificate.com/?p=7</link>
		<comments>http://www.selfsignedsslcertificate.com/?p=7#comments</comments>
		<pubDate>Wed, 06 Apr 2011 15:11:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SSL Certificates]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.selfsignedsslcertificate.com/?p=7</guid>
		<description><![CDATA[Self-signed SSL certificates are “not trusted” because there were generated by your own server, it’s not authorized by any other authority, and you need to get your certificates authorized by a CA. If you find Self-signed SSL certificates on the server before going through the process of installing your verified certificates, look for the steps [...]]]></description>
			<content:encoded><![CDATA[<p>Self-signed SSL certificates are “not trusted” because there were generated by your own server, it’s not authorized by any other authority, and you need to get your certificates authorized by a CA.<br />
If you find Self-signed SSL certificates on the server before going through the process of installing your verified certificates, look for the steps to be followed on the internet.  Internet is a source of wide range of information, there is nothing that can’t be found on the internet.  So look for the available information and only then proceed.<br />
Most of self signed SSL certificates were trusted only if they were authorized by a CA.    SSL are self signed certificates created by the owner himself.    Every ecommerce website should and must have SSL certificates in order gain popularity among their customers especially the ones accepting payment should have it.   </p>
<p>It is a must if you have an online store or a business website created just to promote your business online, if you don’t have an authorized SSL certificates the browser will keep popping up saying this is not a trusted site and so on.  Due to which not only your customers will lose trust in your site but there are chances that they may even lose trust on your store itself and consider it to be a fake site.<br />
These are also popular for giving security and some kind of confidence to your customers wherein they are sure that your site could be trusted and so on. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.selfsignedsslcertificate.com/?feed=rss2&#038;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning of self-signed SSL certificates</title>
		<link>http://www.selfsignedsslcertificate.com/?p=4</link>
		<comments>http://www.selfsignedsslcertificate.com/?p=4#comments</comments>
		<pubDate>Wed, 06 Apr 2011 15:09:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SELF SIGNED SSL CERTIFICATES]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.selfsignedsslcertificate.com/?p=4</guid>
		<description><![CDATA[SSL means secure socket layer it is a tool that is used in encrypting the data that is transmitted to the web server. The browser directly connects to the web server with SSL, the browser is asked by the server to prove its identity. The verification is normally done by a third party vendor that [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Calibri; font-size: small;">SSL means secure socket layer it is a tool that is used in encrypting the data that is transmitted to the web server. The browser directly connects to the web server with SSL, the browser is asked by the server to prove its identity. The verification is normally done by a third party vendor that utilizes cryptography.</span></p>
<p><span style="font-family: Calibri; font-size: small;">If you are trying to install a self-signed SSL certificates on your web server, and you can find  a lot of instructions on internet but for the correct and authenticate information  there are often only very less sources with  very little instructions, lacking  the critical  part of the information. </span></p>
<p><span style="font-family: Calibri; font-size: small;">Again these SSL certificates are the ones that keep your site protected not just for your customers but also with the server where all your site information will be stored online and you will need a digital certificate.    You will be provided with it while purchasing your digital certificate itself.  These digital certificates are usually obtained from the third party authorities known as certificate authorities.    These certificates will protect you from fraudsters who pretend to the other server on your website.   With these certificates you are customers are bound to feel safe and secure and will definitely wish to use your site again and again.    So it is wise to get your SSL certificates done as soon as possible to ensure better safety and visibility of your site. </span></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.selfsignedsslcertificate.com/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

