<?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>Make Tech Easier&#187; encryption</title>
	<atom:link href="http://maketecheasier.com/tag/encryption/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Sun, 12 Feb 2012 15:58:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Add SSL Security To Your WordPress Blog</title>
		<link>http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10</link>
		<comments>http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10#comments</comments>
		<pubDate>Sat, 10 Dec 2011 15:58:36 +0000</pubDate>
		<dc:creator>Mahesh Makvana</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=42148</guid>
		<description><![CDATA[The most concerning thing on Internet is the Security. Whether you are using Internet from home or working at an office, there is always the constant threat of hackers lurking around, trying to fish confidential information out from you. In WordPress, this confidential information is your administrator username and password. Once the hackers get hold [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;title=How+To+Add+SSL+Security+To+Your+WordPress+Blog&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10">How To Add SSL Security To Your WordPress Blog</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/WordPress-SSL-Main.jpg" alt="WordPress-SSL-Main" title="WordPress-SSL-Main" width="200" height="200" class="alignleft size-full wp-image-42501" />The most concerning thing on Internet is the Security. Whether you are using Internet from home or working at an office, there is always the constant threat of hackers lurking around, trying to fish confidential information out from you. In WordPress, this confidential information is your administrator username and password. Once the hackers get hold of your login credential, they will be able to do what they want with your site, steal your members info (if you are using WordPress as a community site) and possibly bring down the whole site . </p>
<p>We have discussed <a href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12">plenty of tricks to secure WordPress</a>, and enabling SSL encryption for your login session is yet another useful way to secure your blog.<br />
<span id="more-42148"></span><br />
If you are not aware, while using SSL encryption, all your data are encrypted before they are transmitted over the web. The encrypted data format data format makes it very difficult to be read by the other users. </p>
<p>To enable the SSL Security to your WordPress blog, you will need to have a SSL Certificate (consult your web host if you don&#8217;t have one) and then you can follow the below procedure to make it work with your blog. </p>
<ul>
<li>At first, Open your site directory either using cPanel File Manager or the FTP. I would recommend to use the File Manager instead of FTP.</li>
<li>Once you reach the files directory of your WordPress installation, open the <em>wp-config.php</em> file.</li>
<li>This is the WordPress configuration files and it is the most important in the whole WordPress system. After the file is opened, add the below code and save the file. You can add the code anywhere in the file, there&#8217;s no certain place for it.</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* Enable SSL Encryption */</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span>‘FORCE_SSL_LOGIN’<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span>‘FORCE_SSL_ADMIN’<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<ul>
<li>From then on, your WordPress site Admin area will always load with the SSL Encryption. If your site domain is <em><strong>http://</strong>www.mydomain.com</em>, it will load the admin area of the same with <em><strong>https://</strong>www.mydomain.com/wp-admin</em>.</li>
</ul>
<p>There are so many advantages of using the SSL for your site. The above process will force WordPress to use SSL encryption for the Administration area. It is not necessary to enable SSL encryption for the frontend (unless you are running a blog shop) since all the confidential information, like the Username and Passwords are used only in the Admin area, not anywhere else.</p>
<p>Image Credit: <a href="http://reevoo.com" target="_blank" rel="nofollow">Reevoo.com</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;title=How+To+Add+SSL+Security+To+Your+WordPress+Blog&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10">How To Add SSL Security To Your WordPress Blog</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Easily Encrypt/Decrypt Files In Ubuntu One</title>
		<link>http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02</link>
		<comments>http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02#comments</comments>
		<pubDate>Fri, 02 Dec 2011 23:00:35 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cloud storage]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[Ubuntu One]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=42116</guid>
		<description><![CDATA[Previously, we have shown you how to encrypt your files before upload to the Dropbox server. The method described in that article is using the Encfs method, which requires you to dabble with the command line. While you can use the same method to encrypt/decrypt your Ubuntu One folder, there is a simpler way to [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02&amp;title=How+to+Easily+Encrypt%2FDecrypt+Files+In+Ubuntu+One&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02">How to Easily Encrypt/Decrypt Files In Ubuntu One</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/encrypt-safe-main.jpg" alt="encrypt-safe-main" title="encrypt-safe-main" width="200" height="134" class="alignleft size-full wp-image-42126" />Previously, we have shown you how to <a href="http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" title="How to Encrypt Your Files And Improve Dropbox Security">encrypt your files before upload to the Dropbox</a> server. The method described in that article is using the Encfs method, which requires you to dabble with the command line. While you can use the same method to encrypt/decrypt your Ubuntu One folder, there is a simpler way to do. </p>
<p>The Ubuntu One Encrypt/Decrypt script is a simple Nautilus script that allows you to encrypt/decrypt your files and folder from the context menu. It is easy to use and doesn&#8217;t require any configuration.<br />
<span id="more-42116"></span><br />
<strong>Note</strong>: The script only works in Gnome Nautilus. </p>
<p>1. Download the <a href="http://gnome-look.org/content/show.php/Ubuntu+One+Encrypt+Decrypt?content=142064" target="_blank" rel="nofollow">Ubuntu One Encrypt/Decrypt script</a> from Gnome-look</p>
<p>2. Save the script to the <em>/home/username/.gnome2/nautilus-scripts</em> folder. </p>
<p>3. Right click on the script and select Properties. Go to the Permission tab and check the box &#8220;Allow executing file as program&#8221;. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/encrypt-file-permission.png" alt="encrypt-file-permission" title="encrypt-file-permission" width="494" height="430" class="aligncenter size-full wp-image-42123" /></p>
<p>Press Alt + F2 and enter the follow command to restart Nautilus:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">killall</span> nautilus</pre></div></div>

<p>4. Re-open Nautilus. Right click on any file/folder that you want to encrypt. Select &#8220;Scripts -&gt; Ubuntu One Encrypt Decrypt script.sh&#8221;.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/encrypt-from-context-menu.png" alt="encrypt-from-context-menu" title="encrypt-from-context-menu" width="600" height="291" class="aligncenter size-full wp-image-42118" /></p>
<p>5. In the popup window, select &#8220;Encrypt&#8221;.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/encrypt-or-decrypt.png" alt="encrypt-or-decrypt" title="encrypt-or-decrypt" width="310" height="228" class="aligncenter size-full wp-image-42119" /></p>
<p>6. It will then prompt you to enter a strong passphrase.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/encrypt-passphrase.png" alt="encrypt-passphrase" title="encrypt-passphrase" width="215" height="154" class="aligncenter size-full wp-image-42120" /></p>
<p>Once it&#8217;s done, it will encrypt your file/folder and move it to your Ubuntu One folder. If it is a folder, it will first compress it before the encryption. This is what you will see in your Ubuntu One folder after the encryption.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/encrypt-folder-in-ubuntu-one.png" alt="encrypt-fol or decrypt the file/folder. In this case, we will choose Encryptder-in-ubuntu-one" title="encrypt-folder-in-ubuntu-one" width="378" height="206" class="aligncenter size-full wp-image-42121" /></p>
<h2>Decryption</h2>
<p>To decrypt a file/folder, you have to first copy the encrypted file/folder from the Ubuntu One folder and paste it to another location (the script won&#8217;t work within the Ubuntu One folder). Right click on the encrypted file/folder and select &#8220;Scripts -&gt; Ubuntu One Encrypt Decrypt script.sh&#8221;. This time, select Decrypt.</p>
<p>Once authenticated, the script will proceed to decrypt the file. If it is a folder, the script will untar the compressed file and restore the actual folder.</p>
<p><strong>Advantages</strong></p>
<p>1. Easy to use.</p>
<p>2. Good for storing backup of files/folders that you seldom use.</p>
<p><strong>Disadvantages</strong></p>
<p>1. It is not dynamic. You have to encrypt/decrypt the file/folder every time you want to access it. </p>
<p>2. It doesn&#8217;t sync your file/folder. You have to repeat the same process again every time you add/remove files to/from a folder or make changes to a file. </p>
<p><strong>Note</strong>: This script will work for Dropbox as well. You just have to open the script in a text-editor and change every instance of &#8220;Ubuntu One&#8221; to &#8220;Dropbox&#8221; (assuming your dropbox folder is <em>/home/username/Dropbox</em>). Your encrypted file will then be saved to the Dropbox folder.</p>
<p><a href="http://gnome-look.org/content/show.php/Ubuntu+One+Encrypt+Decrypt?content=142064" title="Ubuntu One Encrypt/Decrypt" target="_blank">Download Ubuntu One Encrypt/Decrypt</a></p>
<p>Image credit: <a href="http://BigStockPhoto.com" title="Big Stock Photo" target="_blank">Big Stock Photo</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02&amp;title=How+to+Easily+Encrypt%2FDecrypt+Files+In+Ubuntu+One&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02">How to Easily Encrypt/Decrypt Files In Ubuntu One</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/easily-encrypt-decrypt-files-in-ubuntu-one/2011/12/02/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Secure Your Torrent Downloads</title>
		<link>http://maketecheasier.com/secure-torrent-downloads/2011/11/02</link>
		<comments>http://maketecheasier.com/secure-torrent-downloads/2011/11/02#comments</comments>
		<pubDate>Wed, 02 Nov 2011 23:58:24 +0000</pubDate>
		<dc:creator>Tavis J. Hampton</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[Port forwarding]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=40707</guid>
		<description><![CDATA[Internet security and privacy are two topics that are frequently in the news. Those Internet users who use the BitTorrent protocol to share files are perhaps more aware of these security and privacy issues than others. Many government agencies, special interest groups, corporations, and hackers with malicious intentions monitor torrent downloads and look for people [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02&amp;title=How+to+Secure+Your+Torrent+Downloads&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/secure-torrent-downloads/2011/11/02">How to Secure Your Torrent Downloads</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-40708" title="secure-torrent" src="http://imagecdn.maketecheasier.com/2011/11/secure-torrent.jpg" alt="secure torrent downloads" width="128" height="128" />Internet security and privacy are two topics that are frequently in the news. Those Internet users who use the BitTorrent protocol to share files are perhaps more aware of these security and privacy issues than others. Many government agencies, special interest groups, corporations, and hackers with malicious intentions monitor torrent downloads and look for people to catch, sue, or attack.</p>
<p>Because of this reality, it is important for torrent file sharers to find ways to protect themselves from litigation, prosecution, bandwidth shaping, and malware. The following tips should help you make your torrent experience safer, private, and more secure.<br />
<span id="more-40707"></span><br />
<strong>Disclaimer</strong>: Downloading copyrighted media without the owner’s permission is illegal is some countries. Under no circumstances is this article intended to encourage illegal activity, and there are no guarantees that this information will protect you from any legal action.</p>
<h2>1. Port Forwarding</h2>
<p>Every modern router has some form of <a href="http://wiki.vuze.com/w/Port_forwarding" target="_blank">port forwarding</a> that you can use for your bittorrent client. With it, you can circumvent ISPs that may block common torrent ports or limit their bandwidth usage. Using port forwarding, you could, for example, forward your BitTorrent traffic through the standard web port (80). Some torrent clients also support randomizing of ports so that they will use a different one every time you start them.</p>
<p><img class="aligncenter size-full wp-image-40709" title="secure-torrent-port-forwarding" src="http://imagecdn.maketecheasier.com/2011/11/secure-torrent-port-forwarding.png" alt="Router configuration port forwarding" width="537" height="180" /></p>
<h2>2. Limit Downloads and Uploads</h2>
<p>Since many ISPs now limit the amount of bandwidth you can consume within a month (or even at certain times of the day), it is important to not let your torrent downloading and uploading go unchecked. Torrent clients like <a href="http://www.qbittorrent.org/" target="_blank">qBittorrent</a> have features that allow you to limit the number, speed, and even time of day that downloads are allowed.</p>
<p><img class="aligncenter size-full wp-image-40710" title="secure-torrent-download-limits" src="http://imagecdn.maketecheasier.com/2011/11/secure-torrent-download-limits.png" alt="qBittorrent download limits configuration" width="566" height="354" /></p>
<h2>3. Encryption</h2>
<p><a href="http://torrentfreak.com/how-to-encrypt-BitTorrent-traffic/" target="_blank">Encryption</a> is all about privacy. There is no reason for anyone, even your ISP to know exactly what sites you are visiting or what files you are downloading. Most torrent clients support some type of encryption for the data and/or header information. It is important to note that encryption will not mask your IP address, so anyone spying on the torrent (i.e. actively connected to the tracker) will still know you are downloading it, but anyone trying to spy on your Internet traffic in general will not be able to see what you are doing.</p>
<p><img class="aligncenter size-full wp-image-40711" title="secure-torrent-encryption" src="http://imagecdn.maketecheasier.com/2011/11/secure-torrent-encryption.png" alt="qBittorrent encryption configuration" width="559" height="228" /></p>
<h2>4. Filter Lists</h2>
<p>There are plenty of organizations that are known for their snooping or malicious intent. With an <a href="http://blocklistpro.com/faqs/biss-ip-filters-sources-list-faq.html" target="_blank">IP filter list</a>, you can completely block them from connecting to you as peers, thereby eliminating any chance of them monitoring you and catching you in the act of downloading something. This may also help reduce the chance that you will connect to a peer that sends out harmful data or malware.</p>
<h2>5. Proxy or VPN</h2>
<p>Of all of the security measures on the list, this is by far the most effective. By routing your torrent traffic through a <a href="http://torrentfreak.com/links-torrent-sites-proxy-vpn/" target="_blank">proxy or VPN</a>, you can completely hide yourself from the outside world. Used in combination with the other tools on this list, your torrent downloading will be virtually covert. Proxy providers usually charge a subscription fee, and they will require you to either download a specially configured bittorrent client or reconfigure yours to use their proxy (often utilizing a SOCKS5 protocol).</p>
<p>Your privacy, however, is only as secure as the company offering the service. If they are under investigation or are willing to sell your information, using their services may not help you at all. Therefore, it is a good idea to ask around and do your research before using a proxy or VPN service.</p>
<p><img class="aligncenter size-full wp-image-40712" title="secure-torrent-proxy-server" src="http://imagecdn.maketecheasier.com/2011/11/secure-torrent-proxy-server.png" alt="qBittorrent proxy configuration" width="631" height="305" /></p>
<h2>Privacy and Security</h2>
<p>The media often associates BitTorrent with illegal file sharing, but there are numerous legitimate organizations, from Linux distribution developers to content delivery networks (CDN), that make use of bittorrent technology. Furthermore, many free media distributors who use open licenses, such as Creative Commons, use bittorrent to help reduce their bandwidth costs.</p>
<p>With a little effort, you can use the above-mentioned tools to help you take back your right to download and share legitimate content and software, while also maintaining your privacy and security.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02&amp;title=How+to+Secure+Your+Torrent+Downloads&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/secure-torrent-downloads/2011/11/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/secure-torrent-downloads/2011/11/02">How to Secure Your Torrent Downloads</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/secure-torrent-downloads/2011/11/02/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Encrypt Your Files And Improve Dropbox Security</title>
		<link>http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24</link>
		<comments>http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24#comments</comments>
		<pubDate>Sat, 25 Jun 2011 00:10:46 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[encrypt files]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=34710</guid>
		<description><![CDATA[Dropbox is indeed a great application. It gives you a free 2GB of storage space to store your files and allows you to access to them and sync them between different computers, regardless you are running Windows, Mac, Linux or any other smart mobile device. However, as good as it gets, there is one major [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24&amp;title=How+to+Encrypt+Your+Files+And+Improve+Dropbox+Security&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24">How to Encrypt Your Files And Improve Dropbox Security</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/06/dropbox-secure.jpg" alt="dropbox-secure" title="dropbox-secure" width="180" height="180" class="alignleft size-full wp-image-34753" />Dropbox is indeed a great application. It gives you a free 2GB of storage space to store your files and allows you to access to them and sync them between different computers, regardless you are running Windows, Mac, Linux or any other smart mobile device. However, as good as it gets, there is one major issue. All the files that you have stored in the cloud are not encrypted. Whoever hack into your account can view and access all the files in your account, including those confidential documents that you have synced over the cloud.</p>
<p>Why is this important to you? A <a href="http://blog.dropbox.com/?p=821" target="_blank">mistake</a> made by the Dropbox team few days back had left the Dropbox&#8217;s main door open for 4 hours. During this period, anyone can log into any account and access all the files in that account without any passwords. While this affects <em>only</em> 1% of its users (which amounts to about 250,000, and that is not a small number), if you are one of those whose accounts have been compromised and you have confidential files in your Dropbox, you better watch out for the bad things that might happen to you.<br />
<span id="more-34710"></span><br />
Since you never know when such incident will happen again, it is best to encrypt your files before you sync them to the cloud so there is a second level of defense when your account has been compromised.</p>
<h2>1. SecretSync</h2>
<p>SecretSync is a file-by-file encryption solution for Windows and Linux. Once installed, you will find a new &#8220;SecretSync&#8221; folder in your user directory. Any files that you place in this folder will be encrypted and sync to Dropox. </p>
<p>The installation and usage of SecretSync for Windows is pretty straightforward. You simply <a href="http://getsecretsync.com/ss/download/">download</a>, install and run it. it will then guide you through the encryption process.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/secretsync-windows-setup.png" alt="secretsync-windows-setup" title="secretsync-windows-setup" width="450" height="400" class="aligncenter size-full wp-image-34748" /></p>
<p>For Linux, the usage is purely command-line based.</p>
<p>1. You have to first <a href="http://getsecretsync.com/ss/download/">download</a> the deb file and install it in your system. </p>
<p>2. Open a terminal and type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">secretsync</pre></div></div>

<p>This will run the installer and download the necessary files from SecretSync site. It will also run you through the setting up process.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/secretsync-linux-setup.png" alt="secretsync-linux-setup" title="secretsync-linux-setup" width="600" height="395" class="aligncenter size-full wp-image-34740" /></p>
<p>After the installation, type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">secretsync start</pre></div></div>

<p>to start the SecretSync service. You should see a new SecretSync folder in your Home directory. Any files you place in this folder will be encrypted and synced to Dropbox.</p>
<p><strong>Note</strong>: <em>The latest version of SecretSync will add itself to the autostart item automatically. The following step is meant for the older version.</em></p>
<p>To get SecretSync to autostart everytime you login, go to &#8220;System -> Preferences -> Startup Applications&#8221; and create a new startup item.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/secretsync-autostart.png" alt="secretsync-autostart" title="secretsync-autostart" width="368" height="207" class="aligncenter size-full wp-image-34749" /></p>
<p><a href="http://getsecretsync.com/">SecretSync</a></p>
<h2>2. Encfs</h2>
<p>Encfs is a better solution than SecretSync because it stores the encryption keys on your local machine and it can work in Linux (natively), Windows (via BoxCryptor) and Mac (via MacFuse), which is great if you use Dropbox on more than one operating system.</p>
<p>In Ubuntu, open a terminal and type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> encfs
<span style="color: #c20cb9; font-weight: bold;">sudo</span> addgroup <span style="color: #000000; font-weight: bold;">&lt;</span>your username<span style="color: #000000; font-weight: bold;">&gt;</span> fuse</pre></div></div>

<p>To create an encrypted folder, type the command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">encfs ~<span style="color: #000000; font-weight: bold;">/</span>Dropbox<span style="color: #000000; font-weight: bold;">/</span>.encrypted ~<span style="color: #000000; font-weight: bold;">/</span>Private</pre></div></div>

<p>The above command instructs encfs to create an encrypted hidden folder (with name <em>.encrypted</em>) in Dropbox and mount it in the Private Folder in your Home directory.</p>
<p>When it prompts you for the configuration option, press &#8220;p&#8221; follow by Enter.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/encfs-option.png" alt="encfs-option" title="encfs-option" width="600" height="230" class="aligncenter size-full wp-image-34743" /></p>
<p>Next, it will ask you to enter your password. Be very careful with what you type since it won&#8217;t appear in the screen. </p>
<p>That&#8217;s it. Whatever files you place in the Private folder will be encrypted and synced with Dropbox.</p>
<p>To get the encrypted folder to automount everytime you log in, you can use <em>gnome-encfs</em>.</p>
<p>1. Download gnome-encfs <a href="http://dl.dropbox.com/u/6864546/gnome-encfs">here</a> (or grab the source <a href="https://bitbucket.org/obensonne/gnome-encfs/src">here</a>) to your Home folder.</p>
<p>2. Type the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">install</span> ~<span style="color: #000000; font-weight: bold;">/</span>gnome-encfs <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin
gnome-encfs <span style="color: #660033;">-a</span> ~<span style="color: #000000; font-weight: bold;">/</span>Dropbox<span style="color: #000000; font-weight: bold;">/</span>.encrypted ~<span style="color: #000000; font-weight: bold;">/</span>Private</pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2011/06/encfs-gnome-automount.png" alt="encfs-gnome-automount" title="encfs-gnome-automount" width="548" height="139" class="aligncenter size-full wp-image-34744" /></p>
<p><strong>GUI for Encfs</strong></p>
<p>In Linux, <a href="http://tom.noflag.org.uk/cryptkeeper.html">Cryptkeeper</a> is an application that provides a graphical interface for encfs. It doesn&#8217;t come with the full configuration option for encfs, but if you need an easy way to get started quickly, this will be very useful.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cryptkeeper-applet.png" alt="cryptkeeper-applet" title="cryptkeeper-applet" width="241" height="115" class="aligncenter size-full wp-image-34741" /></p>
<p>In Ubuntu,</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> cryptkeeper</pre></div></div>

<p>Cryptkeeper works as a system tray applet. If you are using Unity, use the following command to get it to work:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gsettings <span style="color: #000000; font-weight: bold;">set</span> com.canonical.Unity.Panel systray-whitelist <span style="color: #ff0000;">&quot;['Cryptkeeper']&quot;</span>
setsid unity</pre></div></div>

<p><strong>BoxCryptor</strong></p>
<p>BoxCryptor is not really a GUI for encfs, but its encryption method is compatible with encfs. If you have created an encrypted folder in Linux, you can use BoxCryptor in Windows to mount the same encrypted folder. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/boxcryptor-main.png" alt="boxcryptor-main" title="boxcryptor-main" width="469" height="371" class="aligncenter size-full wp-image-34758" /></p>
<h2>3. TrueCrypt</h2>
<p>TrueCrypt is another powerful and cross-platform compatible encryption tool that you can use. We have mentioned it <a href="http://maketecheasier.com/truecrypt-encrypt-your-data-the-easy-way/2008/04/17">here</a> and <a href="http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23">here</a>, so we won&#8217;t go through it again. </p>
<p>One disadvantage of TrueCrypt is that you have to create a fixed size virtual container before you can use it. In addition, you can only get it to sync after you have unmounted it. This means that you won&#8217;t be able to sync your files in real time. Other than that, if you need a true cross-platform solution, then TrueCrypt is definitely the one for you.</p>
<p>That&#8217;s it. Which method do you use to secure your files in Dropbox?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24&amp;title=How+to+Encrypt+Your+Files+And+Improve+Dropbox+Security&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24">How to Encrypt Your Files And Improve Dropbox Security</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/encrypt-files-in-dropbox/2011/06/24/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Password Protect Your Files And Folders In Windows</title>
		<link>http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23</link>
		<comments>http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23#comments</comments>
		<pubDate>Mon, 23 May 2011 23:58:43 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[Folders]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[Protect]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=33484</guid>
		<description><![CDATA[Depending on your work, there will be times that you need to secure some confidential files/folders in your computer. Previously, we have shown you how to protect sensitive documents in Windows, without installing any software. In this article, let&#8217;s take a look at several software that can password protect your files and folders. 1. AxCrypt [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23&amp;title=How+to+Password+Protect+Your+Files+And+Folders+In+Windows&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23">How to Password Protect Your Files And Folders In Windows</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/05/encrypted-binary.jpg" alt="encrypted-binary" title="encrypted-binary" width="200" height="147" class="alignleft size-full wp-image-33493" />Depending on your work, there will be times that you need to secure some confidential files/folders in your computer. Previously, we have shown you how to <a href="http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14/">protect sensitive documents in Windows</a>, without installing any software. In this article, let&#8217;s take a look at several software that can password protect your files and folders.<br />
<span id="more-33484"></span></p>
<h2>1. AxCrypt</h2>
<p><a href="http://www.axantum.com/AxCrypt/Default.html">AxCrypt </a>is extremely easy to use and does not add any burden to your system resources.</p>
<p>The usage is simple. After the installation, simply right click on any file/folder and select &#8220;<em>AxCrypt -> Encrypt</em>&#8220;. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/axcrypt-encrypt.png" alt="axcrypt-encrypt" title="axcrypt-encrypt" width="546" height="419" class="aligncenter size-full wp-image-33487" /></p>
<p>Enter your passphrase. Make sure that it is strong and no one else but you know it. Optionally, you can also specify a key file (using another file as a key to lock the file) to further enhance the security. If you don&#8217;t want to use your own file, you can get it to create a random key-file that you can use for encryption. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/axcrypt-enter-passphrase.png" alt="axcrypt-enter-passphrase" title="axcrypt-enter-passphrase" width="289" height="299" class="aligncenter size-full wp-image-33488" /></p>
<p><strong>Note</strong>: <em>Using a key file is a double-edged sword. While it enhances the security, if the key file is modified or lost, you won&#8217;t be able to access your password protected file forever.</em></p>
<p>By default, after you have entered the passphrase, AxCrypt will remember the passphrase throughout your session. This is to allow you to access your encrypted files without having to type the password everytime. Thus, it is important to set a password for your screen saver so no one can access your computer when you leave for a short while. Alternatively, you can also clear the passphrase memory when you need to go away.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/axcrypt-clear-passphrase.png" alt="axcrypt-clear-passphrase" title="axcrypt-clear-passphrase" width="554" height="415" class="aligncenter size-full wp-image-33489" /></p>
<p>Lastly, AxCrypt also comes with a &#8220;Shred and Delete&#8221; function to allow you to delete your file beyond recovery.</p>
<p>AxCrypt is available as a full installer and portable version. It is best to install the full version if you need the full functionality.</p>
<h2>2. TrueCrypt</h2>
<p>The next encryption method is using the popular <a href="http://www.truecrypt.org/">TrueCrypt</a>. There are many encryption options in TrueCrypt, and one of them is create a virtual encrypted disk within a file. To others, this is just a single file and they can&#8217;t open it without the password. To you, this virtual encrypted disk is the place where you store all your confidential files and folders. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/truecrypt-create-file-container.png" alt="truecrypt-create-file-container" title="truecrypt-create-file-container" width="600" height="370" class="aligncenter size-full wp-image-33490" /></p>
<p>To make it even more secure, you can make the volume hidden so others can&#8217;t see this encrypted file.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/truecrypt-hidden-volume.png" alt="truecrypt-hidden-volume" title="truecrypt-hidden-volume" width="600" height="369" class="aligncenter size-full wp-image-33491" /></p>
<p>For usage of TrueCypt, <a href="http://maketecheasier.com/truecrypt-encrypt-your-data-the-easy-way/2008/04/17/">check out this article</a>.</p>
<p>Unlike AxCrypt, TrueCrypt works to encrypt a whole bunch of files/folders rather than protecting individual file. This is extremely useful if you have plenty of documents that need to be protected. </p>
<h2>Conclusion</h2>
<p>While there are many other commercial software that can protect your files and folders, for free software, AxCrypt and TrueCrypt are the best, in my opinion. Both of them work differently and serve different needs. For protecting individual file/folder, AxCrypt is a good choice. For mass protection, TrueCrypt is ideal. </p>
<p>Which software do you use to protect your files/folders?</p>
<p>Image credit: <a href="http://www.flickr.com/photos/dan4th/301092024/" target="_blank" rel="nofollow">Dan4th</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23&amp;title=How+to+Password+Protect+Your+Files+And+Folders+In+Windows&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23">How to Password Protect Your Files And Folders In Windows</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/password-protect-files-folders-in-windows/2011/05/23/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Share Sensitive Information Online With CloudSafe</title>
		<link>http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26</link>
		<comments>http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26#comments</comments>
		<pubDate>Sat, 26 Mar 2011 14:58:43 +0000</pubDate>
		<dc:creator>Hammad</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloudsafe]]></category>
		<category><![CDATA[encrypt files]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[online storage]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[share data]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=31218</guid>
		<description><![CDATA[The internet helps you quickly share important information with your contacts. However you have to be careful about the internet channels you use to transmit sensitive information. Today’s hackers and malware are very advanced and can possibly intercept the files you share with your friends over IM or other applications. Of course the safest option [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26&amp;title=Share+Sensitive+Information+Online+With+CloudSafe&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26">Share Sensitive Information Online With CloudSafe</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img title="Cloudsafe-1" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe1.jpg" alt="Cloudsafe-1" width="216" height="61" class="alignleft" /> The internet helps you quickly share important information with your contacts. However you have to be careful about the internet channels you use to transmit sensitive information. Today’s hackers and malware are very advanced and can possibly intercept the files you share with your friends over IM or other applications.</p>
<p>Of course the safest option would be to avoid transmitting private data such as passwords, PINs, and bank account numbers over the internet; but there are times of urgency when sharing this information online cannot be avoided. For these times, CloudSafe is the best tool to use.<br />
<span id="more-31218"></span></p>
<h3>Introduction</h3>
<p>CloudSafe is a brilliant web service that helps share sensitive data online. The site lets you upload any type of file and encrypts it using AES 256. You can then optionally grant your contacts access to your encrypted files. The way CloudSafe executes this process is what sets it apart from similar websites.</p>
<h3>Functioning and Usage</h3>
<p>To put it succinctly, CloudSafe creates virtual safes in the cloud i.e. on the internet. As a CloudSafe user you can create virtual safes that hold the encrypted files you upload. These safes have variable levels of access that give you a great control over how and with whom the safe’s contents are shared.</p>
<p>For each new safe you create, you can enter a name, description, and brief note. In the same stage that you enter this information, you can upload files from your computer to the safe. To ensure no additional files are mistakenly uploaded, the site does not support batch-uploads.</p>
<p><img class="aligncenter" title="Cloudsafe-2" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe2.png" alt="Cloudsafe-2" width="569" height="519" /></p>
<p>With your virtual safe created you can specify the type of access your contacts have to the safe. The different types of access include the ability to read and write data, a dual-permission procedure that requires 2 people to have each other’s permission to view the data, and a confirmation procedure that lets a person access the safe only after obtaining permission from another person.</p>
<p><img class="aligncenter" title="Cloudsafe-3" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe3.png" alt="Cloudsafe-3" width="577" height="242" /></p>
<p>These variable levels of access ensure that you have full control over the safe’s contents. They let you be precise when it comes to deciding who you share the data with and to what extent.</p>
<p>The people you share your safes with must be CloudSafe users. In case they are not CloudSafe users, an invitation email is sent to them. The notification of sharing your safe can be accompanied by a custom message that you choose to elaborate what you are sharing.</p>
<p><img class="aligncenter" title="Cloudsafe-4" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe4.png" alt="Cloudsafe-4" width="337" height="447" /></p>
<p>CloudSafe users to whom you have granted access, can view the safe and easily access its contents.</p>
<p><img class="aligncenter" title="Cloudsafe-5" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe5.png" alt="Cloudsafe-5" width="481" height="158" /></p>
<p>Your contacts can also view the level of access they have for your safes.</p>
<p><img class="aligncenter" title="Cloudsafe-6" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe6.png" alt="Cloudsafe-6" width="421" height="188" /></p>
<p>The contents are displayed in a user-friendly manner with the size and date of each file displayed. Users can download a file simply by clicking on its title.</p>
<p><img class="aligncenter" title="Cloudsafe-7" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe7.png" alt="Cloudsafe-7" width="577" height="91" /></p>
<p>Other ways of sharing your safe’s contents are by setting an access code or by enabling a feature called “WebDAV.” With WebDAV you can temporarily allow people not on CloudSafe to access your safe’s contents. WebDAV provides a URL to your safe along with a secure username and password to access the contained files.</p>
<p><img class="aligncenter" title="Cloudsafe-8" src="http://imagecdn.maketecheasier.com/2011/03/Cloudsafe8.png" alt="Cloudsafe-8" width="519" height="320" /></p>
<p>People not on CloudSafe will be able to view your safe’s contents only after you share the public URL along with the WebDAV username and password. You can disable WebDAV anytime and revoke the access you had granted.</p>
<h3>Pricing</h3>
<p>The free account offered by CloudSafe allows a maximum of 3 safes with a total storage capacity of 1 GB. If at any time you require more safes or a greater storage, you can opt for the site’s premium services.</p>
<h3>Conclusion</h3>
<p>CloudSafe provides a valuable service to all of its users. Previously you had to avoid transmitting sensitive data online; but with CloudSafe you can save a ton of time by sharing files securely through encryption. Whether you need to share sensitive files for personal or business use, CloudSafe will serve perfectly.</p>
<p>You can visit CloudSafe over <a href="http://secure.cloudsafe.com/">here</a>.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26&amp;title=Share+Sensitive+Information+Online+With+CloudSafe&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26">Share Sensitive Information Online With CloudSafe</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/share-sensitive-information-online-with-cloudsafe/2011/03/26/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Protect Your Sensitive Documents In Windows 7</title>
		<link>http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14</link>
		<comments>http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14#comments</comments>
		<pubDate>Fri, 14 Jan 2011 21:58:05 +0000</pubDate>
		<dc:creator>Angel Luis</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[EFS]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=27711</guid>
		<description><![CDATA[Do you ever have a confidential document that you don&#8217;t want others to see? How do you protect it from creeping eyes? While there are many tools in the market, both free and paid, that allow you to encrypt your files and folders, we are not going to discuss about them today. Instead, we will [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14&amp;title=How+To+Protect+Your+Sensitive+Documents+In+Windows+7&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14">How To Protect Your Sensitive Documents In Windows 7</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-27807" title="efs-Icon" src="http://imagecdn.maketecheasier.com/2011/01/efs-icon.jpg" alt="efs-icon" width="177" height="177" />Do you ever have a confidential document that you don&#8217;t want others to see? How do you protect it from creeping eyes? While there are many tools in the market, both free and paid, that allow you to encrypt your files and folders, we are not going to discuss about them today. Instead, we will talk about the built-in encryption function in Windows (available since Windows 2000). The tool that we are referring to is <em>EFS (Encrypting File System)</em>.<br />
<span id="more-27711"></span><br />
<strong>Note:</strong> <em>The EFS uses a certificate to store your encryption detail. It is important to backup your certificate in an external drive in case your current PC crashes and you lose the certificate. Once you lose the certificate, you won&#8217;t be able to open the encrypted files anymore.</em></p>
<p>For the example, we are going to use a folder with the name &#8220;<em>Important Files</em>&#8220;. Right click the folder and select &#8220;<em>Properties</em>&#8220;:</p>
<p><img class="aligncenter size-full wp-image-27787" title="Important Files Properties" src="http://imagecdn.maketecheasier.com/2011/01/efs-properties.png" alt="efs-properties" width="393" height="429" /></p>
<p>Click &#8220;<em>Advanced</em>&#8220;:</p>
<p><img class="aligncenter size-full wp-image-27788" title="Click On Advanced" src="http://imagecdn.maketecheasier.com/2011/01/efs-click-advanced.png" alt="efs-click-advanced" width="377" height="487" /></p>
<p>Select &#8220;<em>Encrypts contents to secure data</em>&#8221; and select OK:</p>
<p><img class="aligncenter size-full wp-image-27789" title="Advanced Attributes" src="http://imagecdn.maketecheasier.com/2011/01/efs-advanced-attributes.png" alt="efs-advanced-attributes" width="394" height="347" /></p>
<p>You can either just apply the attribute to a folder or apply it to all subfolders and files as well. In this case, I will apply the encryption to any children object, as files or subfolders:</p>
<p><img class="aligncenter size-full wp-image-27791" title="Confirm Attribute Changes" src="http://imagecdn.maketecheasier.com/2011/01/efs-confirm-attribute-changes.png" alt="efs-confirm-attribute-changes" width="402" height="253" /></p>
<p>That&#8217;s it. As you can see, it is very easy to encrypt a file/folder.</p>
<p>Now, most of you will start asking &#8220;<em>where is the encryption key and how do I back it up?</em>&#8221;</p>
<h3>Backing up your encryption certificate</h3>
<p>Windows store all the encryption detail in a certificate. This certificate acts like a key to your safe. If you lose your certificate (the key to safe), you won&#8217;t be able to access your files anymore. That&#8217;s why you need a backup file.</p>
<p>Go to the Start menu. Using the search function, type &#8220;<em>manage encryption</em>&#8221; (without quotes). Select &#8220;<em>Manage file encryption certificates</em>&#8220;:</p>
<p><img class="aligncenter size-full wp-image-27792" title="Search Manage Encryption" src="http://imagecdn.maketecheasier.com/2011/01/efs-search-manage-encryption.png" alt="efs-search-manage-encryption" width="411" height="301" /></p>
<p>A window appears. It shows information about what you can do with the utility. Press Next:</p>
<p><img class="aligncenter size-full wp-image-27798" title="efs-manage-certificates" src="http://imagecdn.maketecheasier.com/2011/01/efs-manage-certificates.png" alt="efs-manage-certificates" width="577" height="549" /></p>
<p>Select the certificate you want to backup. In this case, there is only one:</p>
<p><img class="aligncenter size-full wp-image-27799" title="efs-select-certificate" src="http://imagecdn.maketecheasier.com/2011/01/efs-select-certificate.png" alt="efs-select-certificate" width="577" height="549" /></p>
<p>Select the location to backup your certificate and enter a password to protect the file. It is very important that you copy this file to other device, and of course that you remember the password:</p>
<p><img class="aligncenter size-full wp-image-27800" title="efs-backup-certificate" src="http://imagecdn.maketecheasier.com/2011/01/efs-backup-certificate.png" alt="efs-backup-certificate" width="577" height="549" /></p>
<p>Now, the program allows you to associate this certificate to previously encrypted files. In this case, as we are creating a backup copy, just press Next:</p>
<p><img class="aligncenter size-full wp-image-27803" title="efs-update-encrypted-files" src="http://imagecdn.maketecheasier.com/2011/01/efs-update-encrypted-files.png" alt="efs-update-encrypted-files" width="577" height="549" /></p>
<p>The utility will show a message with information, just press <em>Close</em>. Done!</p>
<p><img class="aligncenter size-full wp-image-27804" title="efs-backed-up" src="http://imagecdn.maketecheasier.com/2011/01/efs-backed-up.png" alt="efs-backed-up" width="577" height="549" /></p>
<p>For those who are looking to encrypt your USB drive, check out the <a href="http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11">Bitlocker to Go</a></p>
<p>Have you ever use Encryption File System before? Do you think is a handy feature or do you prefer something like Bit Locker?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14&amp;title=How+To+Protect+Your+Sensitive+Documents+In+Windows+7&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14">How To Protect Your Sensitive Documents In Windows 7</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/protect-sensitive-documents-in-windows-7/2011/01/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Secure Your Internet Connection via SSH</title>
		<link>http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25</link>
		<comments>http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25#comments</comments>
		<pubDate>Thu, 25 Mar 2010 12:00:20 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=13980</guid>
		<description><![CDATA[Wouldn&#8217;t it be great if all the Internet connection in the World are secure and encrypted and you don&#8217;t have to worry about hackers sniffing your data in the network? Apparently, that does not exist in the real world. Most of the time, when you are using a public network, you are exposing yourself to [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25&amp;title=How+to+Secure+Your+Internet+Connection+via+SSH&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25">How to Secure Your Internet Connection via SSH</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/03/ssh-secure-lock.jpg" alt="ssh-secure-lock" title="ssh-secure-lock" width="200" height="196" class="alignleft size-full wp-image-13987" />Wouldn&#8217;t it be great if all the Internet connection in the World are secure and encrypted and you don&#8217;t have to worry about hackers sniffing your data in the network? Apparently, that does not exist in the real world. Most of the time, when you are using a public network, you are exposing yourself to thousands of hackers who are waiting for you to hand over your confidential data to them.</p>
<p>Luckily, there are several ways to encrypt your Internet connection on a public network, and one of my favorite is SSH tunneling. This may sound too technical a term for most of the casual users, but I can assure you that it is very easy to implement it.<br />
<span id="more-13980"></span></p>
<h3>What is SSH?</h3>
<p>In short, <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a> is a method (or technically, a protocol) that connects two computer in a secure encrypted manner. When two computers are connected via SSH, any data transfer between the two terminal are encrypted.  <a href="http://en.wikipedia.org/wiki/Tunneling_protocol" target="_blank">SSH Tunneling</a> is simply a method where we use the connected  computer as a proxy to browse the web. When we browse the web (with our browser) via SSH tunneling, the proxy server will retrieve the web content and send it back to our computer via secure connection. Two major benefits of using SSH tunneling include:</p>
<ol>
<li>Masking of your IP address</li>
<li>Secure connection to prevent hackers from sniffing out your data</li>
</ol>
<p>SSH is mainly used in Linux and Mac, but Windows users can also use SSH with Cygwin.</p>
<h3>Getting started</h3>
<p>Before we start, there are a few things that you need to have:</p>
<ul>
<li>a SSH server.</li>
<li>a SSH client. For Windows users, <a href="http://cygwin.com/" target="_blank">download Cygwin here</a>.</li>
<li>Login name and password to login to the remote computer</li>
</ul>
<p><strong>Note</strong>: <em>If you own a website that is running on a third party web host, you already have a SSH server ready to use. You might need to your web host for permission to access via SSH.</em></p>
<p>On your Mac or Linux machine, open a terminal. Windows users open up the Cygwin application.</p>
<p>Type in the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-D</span> <span style="color: #000000;">9999</span> <span style="color: #c20cb9; font-weight: bold;">login</span><span style="color: #000000; font-weight: bold;">@</span>domain.com</pre></div></div>

<p>The default connection port for the SSH server is port 22, but this might vary across different SSH server. In this case, you will need to find the port number from your web host and enter in the command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-D</span> <span style="color: #000000;">9999</span> <span style="color: #660033;">-p</span> PORT <span style="color: #c20cb9; font-weight: bold;">login</span><span style="color: #000000; font-weight: bold;">@</span>domain.com</pre></div></div>

<p>where <em>PORT</em> is the port number to connect to.</p>
<p>The <em>login</em> is the name you are going to login while the domain can be an IP address or a domain name.</p>
<p>You will be prompted to enter your password.</p>
<h3>Configuring your browser</h3>
<p>In your browser, go to the options page and look out for the section to change your Proxy settings.</p>
<p>Check the button &#8220;<em>Manual Proxy Configuration</em>&#8220;. In the SOCKS field, enter &#8220;<em>localhost</em>&#8221; and <em>9999</em> for the port field.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/03/ssh-proxy-configuration.png" alt="ssh-proxy-configuration" title="ssh-proxy-configuration" width="574" height="512" class="alignnone size-full wp-image-13985" /></p>
<p>Save and close the option page.</p>
<p>That&#8217;s it! Your connection are now secured.</p>
<h3>Disconnect your SSH session</h3>
<p>To disconnect from the SSH session, first, change the browser setting back to &#8220;Direct Internet Connection&#8221; (or whatever the previous setting).</p>
<p>Next, in your terminal, type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">exit</span></pre></div></div>

<p>This will disconnect your SSH session.</p>
<p>Have you tried SSH before? Share your experience in the comments.</p>
<p>Image credit: <a href="http://www.flickr.com/photos/davehalley/" target="_blank">Dave Halley</a><br />
<!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25&amp;title=How+to+Secure+Your+Internet+Connection+via+SSH&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25">How to Secure Your Internet Connection via SSH</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How to Password Protect Your USB Drive Without Administrator Privilege</title>
		<link>http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29</link>
		<comments>http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29#comments</comments>
		<pubDate>Wed, 29 Jul 2009 12:00:59 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[USB Drive]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=6088</guid>
		<description><![CDATA[Password protecting my USB drive is often the most important thing that I do when I went on travel. With all the confidential information in the USB drive, the last thing that I want to see is to lost it and have others to access all my precious data. Although I have previously covered two [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29&amp;title=How+to+Password+Protect+Your+USB+Drive+Without+Administrator+Privilege&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29">How to Password Protect Your USB Drive Without Administrator Privilege</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="rohos-logo" src="http://imagecdn.maketecheasier.com/2009/07/rohos-logo.gif" alt="rohos-logo" width="130" height="87" /> Password protecting my USB drive is often the most important thing that I do when I went on travel. With all the confidential information in the USB drive, the last thing that I want to see is to lost it and have others to access all my precious data.</p>
<p>Although I have previously covered two useful software for encrypting USB drive: <a href="http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11">Windows 7 BitLocker</a> and <a href="http://maketecheasier.com/truecrypt-encrypt-your-data-the-easy-way/2008/04/17">TrueCrypt</a>, one thing that prevented me from using them on the move is that these two software require administrator privilege (or the ultimate version of Windows 7) to use, which in most Internet cafes, you don’t have access to.</p>
<p>There are also several others encryption software out there, but the one that worked well for me, and apparently free and does not require any administrator privileges is <a href="http://www.rohos.com/products/rohos-mini-drive/" target="_blank">Rohos Mini Drive</a>.<br />
<span id="more-6088"></span><br />
What <strong>Rohos Mini Drive</strong> does is to create hidden and encrypted partition on the USB flash drive memory. When you plug in your USB drive, you won&#8217;t get to see the hidden partition. Only when you run the Rohos application (within the USB drive) and enter your password, then will the hidden partition appear. Since the Rohos application does not require access (or modification) to the computer’s system, it doesn’t require any administrator privileges to run it. This is great for those who need to access their encrypted data on a public computer that they don’t have administrator access to.</p>
<h3>Installing Rohos Mini Drive</h3>
<p>The initial step to create an encrypted USB drive requires you to install and run the application in your own computer. This will require administrator privileges.</p>
<p>Download <a href="http://www.rohos.com/products/rohos-mini-drive/" target="_blank">Rohos Mini Drive</a> (Windows only).</p>
<p>Double click the application to install it in your computer.</p>
<p>Once the installation is done, insert in your USB drive. You don’t have to reformat the drive, but you have to make sure that there is enough space to create the new partition.</p>
<p>Open the <strong>Rohos Mini Drive</strong> application from the Start menu.</p>
<p>In the main window, click <em>Setup USB Key</em></p>
<p><img class="alignnone" title="rohos-setup" src="http://imagecdn.maketecheasier.com/2009/07/rohos-setup.jpg" alt="rohos-setup" width="554" height="272" /></p>
<p>Rohos Mini Drive will proceed to detect your USB drive. Click <em>Change</em> to edit the partition configuration.</p>
<p><img class="alignnone" title="rohos-detect-usb" src="http://imagecdn.maketecheasier.com/2009/07/rohos-detect-usb.jpg" alt="rohos-detect-usb" width="402" height="320" /></p>
<p>In the configuration window, you can configure the Disk letter that the hidden partition to be mounted to, the encrypted partition size (maximum 2GB), the file system type and the encryption algorithm. The last thing is to point the installation location to your USB drive. The encrypted file will come with a <em>.rdi</em> extension.</p>
<p>Click <em>OK</em> to proceed.</p>
<p><img class="alignnone" title="rohos-configuration" src="http://imagecdn.maketecheasier.com/2009/07/rohos-configuration.jpg" alt="rohos-configuration" width="375" height="336" /></p>
<p>Back to the USB Key Creation window, enter your password and make sure that it is a safe one. Click <em>Create Disk.</em></p>
<p><img class="alignnone" title="rohos-encryption" src="http://imagecdn.maketecheasier.com/2009/07/rohos-encryption.jpg" alt="rohos-encryption" width="373" height="130" /></p>
<p>Encryption completed.</p>
<p><img class="alignnone" title="rohos-encryption-done" src="http://imagecdn.maketecheasier.com/2009/07/rohos-encryption-done.jpg" alt="rohos-encryption-done" width="469" height="188" /></p>
<p>Now open your Windows Explorer and navigate to your USB drive. You should see only the <em>Rohos Mini</em> application (which was not there originally).</p>
<p><img class="alignnone" title="rohos-explorer" src="http://imagecdn.maketecheasier.com/2009/07/rohos-explorer.jpg" alt="rohos-explorer" width="566" height="335" /></p>
<p>Double click the Rohos mini application. Enter the encryption password when prompted.</p>
<p><img class="alignnone" title="rohos-password" src="http://imagecdn.maketecheasier.com/2009/07/rohos-password.jpg" alt="rohos-password" width="359" height="184" /></p>
<p>You should now see your hidden partition prompted in the drive letter that you have chosen earlier.</p>
<p><img class="alignnone" title="rohos-mount-drive" src="http://imagecdn.maketecheasier.com/2009/07/rohos-mount-drive.jpg" alt="rohos-mount-drive" width="580" height="381" /></p>
<p>You can install all your portable apps or store your confidential data on the hidden partition now.</p>
<p>What other software do you use to encrypt your USB drive?</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29&amp;title=How+to+Password+Protect+Your+USB+Drive+Without+Administrator+Privilege&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29">How to Password Protect Your USB Drive Without Administrator Privilege</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/password-protect-your-usb-drive-without-administrator-privilege/2009/07/29/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>How to Easily Encrypt Your USB Drive in Windows 7</title>
		<link>http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11</link>
		<comments>http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11#comments</comments>
		<pubDate>Thu, 11 Jun 2009 12:24:56 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[bitlocker]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[USB Drive]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=5264</guid>
		<description><![CDATA[USB drive is a great tool for you to bring your data anywhere you go without having to lull the whole computer along. The bad thing is, it is small in size and can easily be misplaced or stolen by others. When such incident occurs, the last thing that you want to happen is to [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11&amp;title=How+to+Easily+Encrypt+Your+USB+Drive+in+Windows+7&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11">How to Easily Encrypt Your USB Drive in Windows 7</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="bitlocker-logo" src="http://imagecdn.maketecheasier.com/2009/06/bitlockerlogo.jpg" alt="bitlocker-logo" width="200" height="174" /> USB drive is a great tool for you to bring your data anywhere you go without having to lull the whole computer along. The bad thing is, it is small in size and can easily be misplaced or stolen by others. When such incident occurs, the last thing that you want to happen is to let others view your confidential data, and probably do something bad with them.</p>
<p>In Windows 7, there is this new <a href="http://www.microsoft.com/windows/enterprise/products/windows-7-bitlocker.aspx" target="_blank">Bitlocker To-Go</a> function that allows you to encrypt your USB drive. In the event that your drive is stolen, there is no way that others can access your data, unless he/she has your password.</p>
<p><span id="more-5264"></span>If you have not installed Windows 7 on your computer, we do have a <a href="http://maketecheasier.com/how-to-dual-boot-win-vista-with-windows-7/2009/01/11" target="_blank">great tutorial</a> that teaches you how to do so.</p>
<p>In your computer (the one running Windows 7), plug in your USB drive.</p>
<p>Go to <em>Control Panel -&gt; System and Security -&gt; Bitlocker Drive Encryption</em>. Click <em>Turn On Bitlocker</em> for the removable drive option</p>
<p><img class="alignnone" title="bitlocker1" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker1.jpg" alt="bitlocker1" width="416" height="358" /></p>
<p>You will be asked the method you want to use to unlock the drive (after encryption). There are two methods available: Password or Smart Card. Password is the easier one, but less powerful. In this case, I picked <em>Password</em>.</p>
<p><img class="alignnone" title="bitlocker2" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker2.jpg" alt="bitlocker2" width="580" height="274" /></p>
<p>It will then prompt you to save/print your recovery key. This will come in useful if you have forgotten the password in the future.</p>
<p><img class="alignnone" title="bitlocker3" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker3.jpg" alt="bitlocker3" width="577" height="273" /></p>
<p>Once you are done with the setting, click Next to start encrypting your USB drive. The whole process will take quite some time, depending on the size of your device.</p>
<p><img class="alignnone" title="bitlocker4" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker4.jpg" alt="bitlocker4" width="423" height="206" /></p>
<p><img class="alignnone" title="bitlocker5" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker5.jpg" alt="bitlocker5" width="366" height="230" /></p>
<p>You should see the following message when the encryption is done.</p>
<p><img class="alignnone" title="bitlocker6" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker6.jpg" alt="bitlocker6" width="366" height="142" /></p>
<p>To check if your USB drive is really encrypted, unmount and remount the the USB drive. If the encryption is intact, it will prompt you to enter your password.</p>
<p><img class="alignnone" title="bitlocker7" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker7.jpg" alt="bitlocker7" width="417" height="231" /></p>
<p>Note: If you are using a Windows version other than Windows 7 Ultimate, the Bitlocker To-Go encryption only allows you to read and copy files from the USB drive. You won&#8217;t be able to edit or add new files to the drive.</p>
<p>To decrypt the USB drive, simply follow the same procedure as above, but select <em>Turn Off Bitlocker</em> in the control panel.</p>
<p><img class="alignnone" title="bitlocker8" src="http://imagecdn.maketecheasier.com/2009/06/bitlocker8.jpg" alt="bitlocker8" width="425" height="109" /></p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11&amp;title=How+to+Easily+Encrypt+Your+USB+Drive+in+Windows+7&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11">How to Easily Encrypt Your USB Drive in Windows 7</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/easily-encrypt-your-usb-drive-in-windows-7/2009/06/11/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Create An Encrypted Disk Image To Store Your Sensitive Data In Mac</title>
		<link>http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07</link>
		<comments>http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07#comments</comments>
		<pubDate>Tue, 07 Apr 2009 13:04:50 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[private]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=3897</guid>
		<description><![CDATA[If you keep a great deal of sensitive and confidential files and folders in your computer, the best way to keep them out of the public&#8217;s view is to encrypt them with a strong password. In Mac, if you want to encrypt your data, instead of installing third party encryption software, you can use the [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07&amp;title=How+To+Create+An+Encrypted+Disk+Image+To+Store+Your+Sensitive+Data+In+Mac&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07">How To Create An Encrypted Disk Image To Store Your Sensitive Data In Mac</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3902" title="password-field" src="http://imagecdn.maketecheasier.com/2009/04/password-field.jpg" alt="password-field" width="300" height="117" />If you keep a great deal of sensitive and confidential files and folders in your computer, the best way to keep them out of the public&#8217;s view is to encrypt them with a strong password. In Mac, if you want to encrypt your data, instead of installing third party encryption software, you can use the inbuilt disk image function to create an encrypted container to store your sensitive data.</p>
<p><span id="more-3897"></span>In your Mac, go to <em>Applications -&gt; Utilities -&gt; Disk Utility</em>.</p>
<p>Click on the <em>New Image</em> button.</p>
<p><img class="alignnone" src="http://imagecdn.maketecheasier.com/2009/04/disk-utility.jpg" alt="" width="577" height="479" /></p>
<p>Enter the information in the window.</p>
<p>In the Volume Size field, you can choose the size of the container that you want to create. There are several preset options, including various CD and DVD sizes. You can pick one from the dropdown list or define your own size with the <em>Custom</em> option.</p>
<p><img class="alignnone" src="http://imagecdn.maketecheasier.com/2009/04/image-size.jpg" alt="new-image-size" width="313" height="253" /></p>
<p>Under the Encryption, select <em>128-bit AES encryption</em>. There is also an option to choose 256-bit encryption, but that will slow down the whole process.</p>
<p>In the Image Format field, select <em>read/write disk image</em>.</p>
<p>Here is what you see after configuring:</p>
<p><img class="alignnone" src="http://imagecdn.maketecheasier.com/2009/04/disk-image-info.jpg" alt="disk image info" width="464" height="331" /></p>
<p>Click <em>Create</em> to generate the disk image. It will prompt you for your password. Enter your password, make sure that it is a strong one.</p>
<p>Also, remember to uncheck the box &#8220;<em>Remember password in my keychain</em>&#8220;, else it will defy the purpose of encrypting your data.</p>
<p><img class="alignnone" src="http://imagecdn.maketecheasier.com/2009/04/disk-img-password.png" alt="disk image password" width="443" height="345" /></p>
<p>Once the disk image is ready, you will be able to find it mounted on your desktop ready to be used. Open up the disk image in your Finder and drag (or copy and paste) your sensitive files into it. When you are done, simply unmount it. Anyone who wants to open the disk image to view the files within will have to enter the password that you have set.</p>
<p>That&#8217;s it. You have successfully created an encrypted disk image to contain all your confidential files. With this encrypted disk image, you can store it in a corner of your hard disk, bring it around in your flash drive or burn the disk images to your CD/DVD.</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07&amp;title=How+To+Create+An+Encrypted+Disk+Image+To+Store+Your+Sensitive+Data+In+Mac&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07">How To Create An Encrypted Disk Image To Store Your Sensitive Data In Mac</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/create-an-encrypted-disk-image-to-store-your-sensitive-data-in-mac/2009/04/07/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

