<?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>Project eID Blog &#187; News</title>
	<atom:link href="http://blog.project-eid.org/tag/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.project-eid.org</link>
	<description>News and updates from Project eID team...</description>
	<lastBuildDate>Thu, 02 Jun 2011 11:41:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Pause the Project Development&#8230;!</title>
		<link>http://blog.project-eid.org/news/pause-the-project-development/</link>
		<comments>http://blog.project-eid.org/news/pause-the-project-development/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 14:18:27 +0000</pubDate>
		<dc:creator>NiMaL</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.project-eid.org/?p=288</guid>
		<description><![CDATA[<p>We are just going topress the pause button for the project development for the month of February. We are having our final semester exams from 10th February and we need to spend more time for that. We will be starting &#8230; <a href="http://blog.project-eid.org/news/pause-the-project-development/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p><a href="http://blog.project-eid.org/news/pause-the-project-development/">Pause the Project Development&#8230;!</a> is a post from: <a href="http://blog.project-eid.org">Project eID Blog</a></p>]]></description>
			<content:encoded><![CDATA[<p>We are just going topress the pause button for the project development for the month of February. We are having our final semester exams from 10th February and we need to spend more time for that.</p>
<p>We will be starting back with project development &#8211; the final phase &#8211; from March 1st and we hope to complete all work by mid of March 2009.</p>
<p>We will be be back in a month&#8230;.</p>
<p><a href="http://blog.project-eid.org/news/pause-the-project-development/">Pause the Project Development&#8230;!</a> is a post from: <a href="http://blog.project-eid.org">Project eID Blog</a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.project-eid.org/news/pause-the-project-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R9: Digital Signature process &amp; File and String Symmetric Encryption/Decryption</title>
		<link>http://blog.project-eid.org/reports/digital-signature-process-file-and-string-symmetric-encryptiondecryption/</link>
		<comments>http://blog.project-eid.org/reports/digital-signature-process-file-and-string-symmetric-encryptiondecryption/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 18:30:20 +0000</pubDate>
		<dc:creator>Shayanth</dc:creator>
				<category><![CDATA[Reports]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Java Digital Signature]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Shayanth]]></category>
		<category><![CDATA[Symmetric Encryption]]></category>

		<guid isPermaLink="false">http://blog.project-eid.org/?p=143</guid>
		<description><![CDATA[<p>As we decides earlier I&#8217;m and malalasena have worked on developing the API for Digital Signature process &#38; File and String symmetric Encryption/Decryption. First  I worked on the File encryption and decryption implementation. I got some codes that have been &#8230; <a href="http://blog.project-eid.org/reports/digital-signature-process-file-and-string-symmetric-encryptiondecryption/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p><a href="http://blog.project-eid.org/reports/digital-signature-process-file-and-string-symmetric-encryptiondecryption/">R9: Digital Signature process &#038; File and String Symmetric Encryption/Decryption</a> is a post from: <a href="http://blog.project-eid.org">Project eID Blog</a></p>]]></description>
			<content:encoded><![CDATA[<p>As we decides earlier I&#8217;m and malalasena have worked on developing the API for Digital Signature process &amp; File and String symmetric Encryption/Decryption.</p>
<p>First  I worked on the File encryption and decryption implementation. I got some codes that have been developed by Malalasena and I figure out and fixed the problems in that codes, that can be created during the encryption/ decryption section.  And I extend it for the String encryption process. Then I finalized the full structured eID styled layout for the Encryption/Decryption API.</p>
<p>After that i moved on the API for the Digital Signature process. I found there are some Java Cryptography Architecture which is a framework for accessing and developing cryptographic functionality for the Java platform. A JCA provider implements the cryptographic functionalities like Digital Signatures and Message Digests. And I worked on JCA and the Asymmetric encryption algorithms like RSA.<br />
But I realised that the RSA, DSA are computationally slower than symmetric encryption algorithms like AES. Then I figured out that is good practice to encrypt the actual message to be transmitted using a Symmetric key Algorithm and then encrypt the key used in the Symmetric Key Algorithm using an Asymmetric Key Algorithm.<br />
That is let we take an Example : if one wants to transmit the message &#8220;Shayanthan Kanaganayagham is Here&#8221;, then first encrypt this message using a symmetric key ,say an 128 bit AES key like x7oSgDfAgWxEMiZE/0qYrg and then encrypt this key using an asymmetric key algorithm like RSA.</p>
<p>Then I used this algorithm to develpoe the above considurations. The algorithm below can be used for implementing public key cryptography in Java.</p>
<ol>
<li> Encrypt the message using a symmetric key.</li>
<li> Concatenate the symmetric key + Hash of symmetric key + Hash of message.</li>
<li> Encrypt the concatenated string using the receivers public key.</li>
<li> Sign the data to be transmitted (Encrypted symmetric key + Hash of the key + Hash of message).</li>
<li> Validate the Signature.</li>
<li> Decrypt the message using Receiver private key to get the symmetric key.</li>
<li> Validate the integrity of the key using the Hash of the key.</li>
<li> Decrypt the actual message using the symmetric key which has been decrypted and parsed and checked for integrity.</li>
<li> Compute MessageDigest of data.</li>
<li> Validate if the Message Digest of the decrypted text matches the Message Digest of the Original Message.</li>
</ol>
<p><a href="http://blog.project-eid.org/reports/digital-signature-process-file-and-string-symmetric-encryptiondecryption/">R9: Digital Signature process &#038; File and String Symmetric Encryption/Decryption</a> is a post from: <a href="http://blog.project-eid.org">Project eID Blog</a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.project-eid.org/reports/digital-signature-process-file-and-string-symmetric-encryptiondecryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

