<?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>Scott Brown Consulting &#187; Encryption</title>
	<atom:link href="http://www.scottbrownconsulting.com/category/encryption/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scottbrownconsulting.com</link>
	<description>Information Systems Security - Defense In Depth</description>
	<lastBuildDate>Thu, 02 Feb 2012 05:47:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A Look at the Performance Impact of Hardware-Accelerated AES</title>
		<link>http://www.scottbrownconsulting.com/2011/10/a-look-at-the-performance-impact-of-hardware-accelerated-aes/</link>
		<comments>http://www.scottbrownconsulting.com/2011/10/a-look-at-the-performance-impact-of-hardware-accelerated-aes/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 08:37:04 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.scottbrownconsulting.com/?p=36</guid>
		<description><![CDATA[In 2010, semiconductor manufacturers began migrating the algorithmically intensive portions of the AES cipher on-die in the form of the AES-NI instruction set. Many cryptographic APIs and applications have enabled support for this new technology, and none hesitate to tout &#8230; <a href="http://www.scottbrownconsulting.com/2011/10/a-look-at-the-performance-impact-of-hardware-accelerated-aes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In 2010, semiconductor manufacturers began migrating the algorithmically intensive portions of the <a target="_blank" href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">AES cipher</a> on-die in the form of the <a target="_blank" href="http://en.wikipedia.org/wiki/AES_instruction_set">AES-NI instruction set</a>. Many cryptographic APIs and applications have enabled support for this new technology, and none hesitate to tout the promise of major performance improvements. Intel demonstrates <a target="_blank" href="http://software.intel.com/en-us/articles/intel-advanced-encryption-standard-instructions-aes-ni/">3x to 10x acceleration</a> versus pure software implementations, while the authors of <a target="_blank" href="http://www.truecrypt.org">TrueCrypt</a> set the expectation of <a target="_blank" href="http://www.truecrypt.org/docs/?s=hardware-acceleration">4x to 8x speed gains</a>. Can these performance boosts be recognized in practice, and how much of these gains can be captured in present day, real world scenarios? <span id="more-36"></span></p>
<p>Measured &#8220;in the vacuum&#8221; of the main memory bus, AES-NI certainly delivers on its performance promises. The following benchmarks were recorded with TrueCrypt&#8217;s integrated benchmarking facility on a system equipped with an Intel Core i5-2520M <a target="_blank" href="http://en.wikipedia.org/wiki/Sandy_Bridge">Sandy Bridge</a> processor sporting the AES extensions. When enabled on this system, hardware acceleration was observed to result in a <b>more than 5x speed boost</b> in AES encryption and decryption performance, bumping throughput up from 277 MB/s to 1.5 GB/s. Even cascaded modes recognized significant speed gains.</p>
<p align=center><img src="http://www.scottbrownconsulting.com/images/20111018a.gif" alt="TrueCrypt Benchmark, Hardware-Accelerated AES Enabled" width="511" height="400"></p>
<p align=center><img src="http://www.scottbrownconsulting.com/images/20111018b.gif" alt="TrueCrypt Benchmark, Hardware-Accelerated AES Disabled" width="511" height="400"></p>
<p>Real world applications, however, do not take place in a vacuum, and most users would be hard pressed to bring a data stream with anywhere close to even the lower of the two measured speeds in scope. Encrypted streams don&#8217;t spontaneously originate in main memory with its tens of GB/s of bandwidth. They come from storage devices and network sockets. No rotating mechanical disk drive achieves such high <a target="_blank" href="http://en.wikipedia.org/wiki/Disk_drive_performance_characteristics">transfer rates</a> at this time (try ~120 MB/s), nor does <a target="_blank" href="http://en.wikipedia.org/wiki/Gigabit_Ethernet">gigabit ethernet</a> (125 MB/s). Contemporary <a target="_blank" href="http://en.wikipedia.org/wiki/Sata">SATA</a> controllers do in theory (300 MB/s and 600 MB/s), and <a target="_blank" href="http://en.wikipedia.org/wiki/Solid-state_drive">solid state disks</a> can max out their bandwidth, but <a target="_blank" href="http://media-addicted.de/ssd-and-truecrypt-durability-and-performance-issues/744/">do not mix well with encryption</a> due to wear leveling. Some <a target="_blank" href="http://en.wikipedia.org/wiki/RAID">RAID</a> configurations could go there in theory, but doubtfully in practice. <a target="_blank" href="http://en.wikipedia.org/wiki/10_GbE">10 gigabit ethernet</a> (1.25 GB/s) could break these speeds, but is limited to exotic applications. In fact, network hardware that can operate at such speeds is largely restricted to industrial contexts.</p>
<p>When performance demand is less than what could be supplied absent hardware acceleration, the acceleration is a &#8220;nice to have&#8221; and might have incidental benefits, however <b>in throughput terms</b> its performance impact is zero. <b>Hardware-accelerated AES can ultimately only be said to yield a material, tangible speed boost when the AES cipher is operating on a stream of greater bandwidth than a software-only implementation could keep up with at that time.</b> This is not typically the case in practical scenarios with realistic present day hardware.</p>
<p>So, does AES-NI make a difference? Absolutely. It all but eliminates the possibility that the cipher will act as the performance bottleneck in any given application. It reduces the risk of an erroneous or adulterated AES implementation in software, and it <a target="_blank" href="http://software.intel.com/en-us/articles/intel-advanced-encryption-standard-instructions-aes-ni/">mitigates side channel attacks</a>. It conserves CPU cycles, which conserves power. And, there are circumstances when hardware-accelerated AES would have unambiguous, meaningful performance impact:</p>
<p>&bull; When the stream is extremely fast: you&#8217;re lucky enough to have an unusually high performance configuration, you&#8217;re in a research lab, or you&#8217;re in the future with more advanced hardware than exists today</p>
<p>&bull; When the CPU is underpowered with respect to the other bottlenecks in the system: this could be a factor as AES-NI becomes available on lower powered chips, although, <a target="_blank" href="http://ark.intel.com/search/advanced?AESTech=true">every model Intel has shipped with AES on-die</a> appears to be no less than half as fast as that tested here</p>
<p>&bull; When the CPU is substantially taxed at the time by other processes, which is wholly conceivable</p>
<p>But, in spite of all the benefits hardware accelerated AES brings, it would be naive to regard the technical upper speed limits illustrated in benchmarks as real world performance targets. AES-NI is better viewed as future-proofing, which is no doubt what Intel and AMD are up to with their investment in AES technology.</p>
<p><b>Resources</b></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">Wikipedia: Advanced Encryption Standard</a></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/AES_instruction_set">Wikipedia: AES-NI instruction set</a></p>
<p><a target="_blank" href="http://software.intel.com/en-us/articles/intel-advanced-encryption-standard-instructions-aes-ni/">Intel: Advanced Encryption Standard Instructions (AES-NI)</a></p>
<p><a target="_blank" href="http://www.truecrypt.org">TrueCrypt Homepage</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/docs/?s=hardware-acceleration">TrueCrypt: Hardware Acceleration</a></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/List_of_device_bandwidths">Wikipedia: List of Device Bandwidths</a></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/Disk_drive_performance_characteristics">Wikipedia: Disk Drive Performance Characteristics</a></p>
<p><a target="_blank" href="http://media-addicted.de/ssd-and-truecrypt-durability-and-performance-issues/744/">SSDs and TrueCrypt: Durability and Performance Issues</a></p>
<p><a target="_blank" href="http://ark.intel.com/search/advanced?AESTech=true">Intel Product Search: AES-NI</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2011/10/a-look-at-the-performance-impact-of-hardware-accelerated-aes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TrueCrypt 7.1 Released</title>
		<link>http://www.scottbrownconsulting.com/2011/09/truecrypt-7-1-released/</link>
		<comments>http://www.scottbrownconsulting.com/2011/09/truecrypt-7-1-released/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 00:46:18 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://www.scottbrownconsulting.com/?p=34</guid>
		<description><![CDATA[Sparse remarks in the changelog for today&#8217;s updated release of the TrueCrypt free open-source disk encryption tool, version 7.1, the first new release in nearly a year. Primarily it looks like they have added support for Mac OS X 10.7 &#8230; <a href="http://www.scottbrownconsulting.com/2011/09/truecrypt-7-1-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sparse remarks in the changelog for today&#8217;s updated release of the <a target="_blank" href="http://www.truecrypt.org">TrueCrypt</a> free open-source disk encryption tool, version 7.1, the first new release in nearly a year. Primarily it looks like they have added support for Mac OS X 10.7 Lion. I venture the usual assessment that this update may safely be viewed as optional for users already running at least TrueCrypt 7.0, the most recent major release, absent those experiencing any specific issues. <span id="more-34"></span></p>
<blockquote>
<p>
<b>7.1</b></p>
<p>September 1, 2011</p>
<p><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New features:</b></p>
<ul>
<li>
<p>Full compatibility with 64-bit and 32-bit Mac OS X 10.7 Lion</p>
</li>
</ul>
<p>
<b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Improvements and bug fixes:</b></p>
<ul>
<li>
<p>Minor improvements and bug fixes &nbsp;(<i>Windows, Mac OS X, and Linux</i>)</p>
</li>
</ul>
</blockquote>
<p>I&#8217;ll be upgrading several systems here from version 7.0a and expect zero issues. I&#8217;ve been running TrueCrypt since version 6.0a in late 2008, and never experienced a single issue upgrading or at any other time. It&#8217;s a rock solid program, though the authors are something of a black hole.</p>
<p>If you don&#8217;t already have <a href="http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/">Full Disk Encryption</a> on your portable laptop or notebook computers, this fresh release presents an excellent opportunity to get serious about data theft prevention and fortify your security posture. I offer <a href="http://www.scottbrownconsulting.com/services/">full service TrueCrypt Full Disk Encryption installation</a> for those who are most comfortable having an expert consultant perform the procedure using streamlined tools. <a href="http://www.scottbrownconsulting.com/contact/">Contact me</a> for information.</p>
<p><b>Resources</b></p>
<p><a target="_blank" href="http://www.truecrypt.org">TrueCrypt Homepage</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">TrueCrypt Release Notes</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/downloads">TrueCrypt Download Latest Stable Version</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2011/09/truecrypt-7-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueCrypt 7.0a Released</title>
		<link>http://www.scottbrownconsulting.com/2010/09/truecrypt-7-0a-released/</link>
		<comments>http://www.scottbrownconsulting.com/2010/09/truecrypt-7-0a-released/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 17:48:50 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://www.scottbrownconsulting.com/?p=32</guid>
		<description><![CDATA[A minor bugfix update to the TrueCrypt disk encryption tool, version 7.0a, was released yesterday. The release notes cite minor bugfixes only, so this update may be viewed as optional for users already running at least TrueCrypt 7.0, the most &#8230; <a href="http://www.scottbrownconsulting.com/2010/09/truecrypt-7-0a-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A minor bugfix update to the <a target="_blank" href="http://www.truecrypt.org">TrueCrypt</a> disk encryption tool, version 7.0a, was released yesterday. The <a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">release notes</a> cite minor bugfixes only, so this update may be viewed as optional for users already running at least TrueCrypt 7.0, the most recent major release, absent those experiencing any specific issues. <span id="more-32"></span></p>
<p>In terms of the impacted segment of users, the release notes call out a workaround for an issue affecting Windows Vista and later operating systems only (but not Windows XP) and only with specific storage controller device drivers present.</p>
<blockquote>
<p>
<b>7.0a</b></p>
<p>September 6, 2010</p>
<p><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Improvements:</b></p>
<ul>
<li>
<p>Workaround for a bug in some custom (non-Microsoft) drivers for storage device controllers that caused a system crash when initiating hibernation on TrueCrypt-encrypted operating systems.&nbsp; (<i>Windows 7/Vista/2008/2008R2</i>)</p>
</li>
<li>
<p>Other minor improvements &nbsp;(<i>Windows, Mac OS X, and Linux</i>)</p>
</li>
</ul>
<p>
<b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bug fixes:</b></p>
<ul>
<li>
<p>Minor bug fixes &nbsp;(<i>Windows, Mac OS X, and Linux</i>)</p>
</li>
</ul>
</blockquote>
<p>I&#8217;d make this to be pretty limited in extent, and for a fact it doesn&#8217;t impact my installations, all Windows XP systems. But, all the same, I&#8217;ve updated three systems here at the lab from version 7.0 without issue.</p>
<p>If you don&#8217;t already have <a href="http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/">Full Disk Encryption</a> on your portable laptop / notebook / netbook computers, this fresh release presents an excellent opportunity to get serious about data theft prevention and fortify your security posture. I offer <a href="http://www.scottbrownconsulting.com/services/">full service TrueCrypt Full Disk Encryption installation</a> for those who are most comfortable having an expert perform the procedure using streamlined tools. <a href="http://www.scottbrownconsulting.com/contact/">Contact me</a> for information.</p>
<p><b>Resources</b></p>
<p><a target="_blank" href="http://www.truecrypt.org">TrueCrypt Homepage</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">TrueCrypt Release Notes</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/downloads">TrueCrypt Download Latest Stable Version</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2010/09/truecrypt-7-0a-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueCrypt 7.0 Released, Supports Hardware-Accelerated AES</title>
		<link>http://www.scottbrownconsulting.com/2010/07/truecrypt-7-0-released-supports-hardware-accelerated-aes/</link>
		<comments>http://www.scottbrownconsulting.com/2010/07/truecrypt-7-0-released-supports-hardware-accelerated-aes/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 05:50:56 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.scottbrownconsulting.com/?p=31</guid>
		<description><![CDATA[A major, feature-rich update to the TrueCrypt disk encryption tool hit the wire yesterday, notably adding support for Intel&#8217;s on-die AES-NI instruction set in Westmere class processors and newer. The authors claim a juicy 4 to 8 times performance leap &#8230; <a href="http://www.scottbrownconsulting.com/2010/07/truecrypt-7-0-released-supports-hardware-accelerated-aes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A major, feature-rich update to the <a target="_blank" href="http://www.truecrypt.org">TrueCrypt</a> disk encryption tool hit the wire yesterday, notably adding support for Intel&#8217;s on-die <a target="_blank" href="http://en.wikipedia.org/wiki/AES_instruction_set">AES-NI instruction set</a> in <a target="_blank" href="http://en.wikipedia.org/wiki/Nehalem_(microarchitecture)#Westmere">Westmere</a> class processors and newer. The authors claim a juicy <a target="_blank" href="http://www.truecrypt.org/docs/?s=hardware-acceleration">4 to 8 times performance leap</a> for hardware-accelerated AES over a pure software implementation. <span id="more-31"></span></p>
<p>AES is the <a target="_blank" href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">Advanced Encryption Standard</a>, the open, powerful encryption <a target="_blank" href="http://en.wikipedia.org/wiki/Cipher">cipher</a> officially sanctioned by the Federal government in 2001 for the encryption of top secret information. It has since become so ubiquitous that, as of this year, chip maker <a target="_blank" href="http://www.intel.com/">Intel</a> has begun burning the logic underlying AES <a target="_blank" href="http://software.intel.com/en-us/articles/intel-advanced-encryption-standard-aes-instructions-set/">right on to new chips</a> in hard-wired, transistorized form, allowing encryption and decryption duties to be offloaded from software applications for increased security, reliability and performance.</p>
<p>AES is also the fastest of three ciphers supported by TrueCrypt and the default cipher when creating new volumes. With version 7.0 the TrueCrypt development team has made good on their longstanding promise of a future release that would leverage hardware-accelerated AES capabilities when present.</p>
<p align=center><img src="http://www.scottbrownconsulting.com/images/20100720a.jpg" alt="TrueCrypt Performance Options showing hardware-accelerated AES" width="515" height="330"></p>
<p>The new version also sports a variety of other usability, technical, and security improvements, including a number of convenience features involving Favorite Volumes (a feature I seldom use personally), and hardening of <a target="_blank" href="http://www.truecrypt.org/docs/?s=hibernation-file">Hibernation File encryption</a> under Windows Vista and 7 in the case that Full Disk Encryption is not in force (which is an ill-chosen configuration anyway). And, support for native volume encryption of floppy disks is dropped, presumably since no one has even seen a working floppy disk in years.</p>
<p>As the major version number increment suggests, this update is highly recommended for all users running previous versions. I&#8217;ve updated three systems here at the lab from version 6.3a without issue, although sadly, none of the three have new enough CPUs to do hardware-accelerated AES.</p>
<blockquote>
<p>
<b>7.0</b></p>
<p>July 19, 2010</p>
<p><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New features:</b></p>
<ul>
<li>
<p>Hardware-accelerated AES (for more information, see the chapter Hardware Acceleration).</p>
<p>Note: If you want to disable hardware acceleration, select <i>Settings</i> &gt; <i>Performance</i>  and disable the option &#8216;<i>Accelerate AES encryption/decryption by using the AES instructions of the processor</i>&#8216;.</p>
</li>
<li>
<p>A volume can now be configured to be automatically mounted whenever its host device gets connected to the computer (provided that the correct password and/or keyfiles are supplied).&nbsp; (<i>Windows</i>)</p>
<p>Note: For example, if you have a TrueCrypt container on a USB flash drive and you want to configure TrueCrypt to mount it automatically whenever you insert the USB flash drive into the USB port, follow these steps: 1. Mount the volume. 2. Right-click the mounted volume in the drive list in the main TrueCrypt window and select &#8216;<i>Add to Favorites</i>&#8216;. 3. The Favorites Organizer window should appear. In it, enable the option &#8216;<i>Mount selected volume when its host device gets connected</i>&#8216; and click <i>OK</i>.</p>
<p>Also note that TrueCrypt will not prompt you for a password if you have enabled caching of the pre-boot authentication password (<i>Settings</i> > &#8216;<i>System Encryption</i>&#8216;) and the volume uses the same password as the system partition/drive. The same applies to cached non-system volume passwords.</p>
</li>
<li>
<p>Partition/device-hosted volumes can now be created on drives that use a sector size of 4096, 2048, or 1024 bytes (<i>Windows, Linux</i>).&nbsp;Note: Previously only file-hosted volumes were supported on such drives.</p>
</li>
<li>
<p>Favorite Volumes Organizer  (<i>Favorites</i> &gt; &#8216;<i>Organize Favorite Volumes</i>&#8216; or &#8216;<i>Organize System Favorite Volumes</i>&#8216;), which allows you to set various  options for each favorite volume. For example, any of them can be mounted upon logon, as read-only or removable medium,  can be assigned a special label (which is shown within the user interface instead of the volume path), excluded from hotkey mount, etc. The order in which   favorite volumes are displayed in the  Favorites Organizer window can be changed and it is the order in which the volumes are mounted (e.g. when Windows starts or by pressing the &#8216;<i>Mount Favorite Volumes</i>&#8216; hotkey). For more information, see the chapters Favorite Volumes and System Favorite Volumes.&nbsp;&nbsp;(<i>Windows</i>)</p>
</li>
<li>
<p>The <i>Favorites</i> menu now contains a list of your non-system favorite volumes. When you select a volume from the list, you are asked for its password (and/or keyfiles) (unless it is cached) and if it is correct, the volume is mounted.&nbsp;(<i>Windows</i>)</p>
</li>
</ul>
<p>
<b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Security improvements:</b></p>
<ul>
<li>
<p>In response to our public complaint regarding the missing API for encryption of Windows hibernation files, Microsoft began providing a public API for encryption of hibernation files on Windows Vista and later versions of Windows (for more information, see the section TrueCrypt 5.1a in this version history). Starting with this version 7.0, TrueCrypt uses this API to  encrypt hibernation and crash dump files in a safe documented  way. (<i>Windows 7/Vista/2008/2008R2</i>)</p>
<p>Note: As Windows XP and Windows 2003 do not provide any API for encryption of hibernation files, TrueCrypt has to modify undocumented components of Windows XP/2003 in order to allow users to encrypt hibernation files. Therefore, TrueCrypt cannot guarantee that Windows XP/2003 hibernation files will always be encrypted. Therefore, if you use Windows XP/2003 and want the hibernation file to be safely encrypted, we strongly recommend that you upgrade to Windows Vista or later and to TrueCrypt 7.0 or later. For more information, see the section Hibernation File. &nbsp;</p>
</li>
</ul>
<p>
<b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Improvements:</b></p>
<ul>
<li>
<p>Many minor improvements. &nbsp;(<i>Windows, Mac OS X, and Linux</i>)</p>
</li>
</ul>
<p>
<b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bug fixes:</b></p>
<ul>
<li>
<p>Minor bug fixes. &nbsp;(<i>Windows, Mac OS X, and Linux</i>)</p>
</li>
</ul>
<p>
<b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Removed features:</b></p>
<ul>
<li>
<p>TrueCrypt no longer supports device-hosted  volumes located on floppy disks. Note: You can still create file-hosted TrueCrypt volumes on floppy disks.</p>
</li>
</ul>
</blockquote>
<p>The authors dropped a lot more detail in the release notes this time, which is highly appreciated.</p>
<p>If you don&#8217;t already have <a href="http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/">Full Disk Encryption</a> on your portable laptop / notebook / netbook computers, this fresh release presents an excellent opportunity to get serious about data theft prevention and fortify your security posture. I offer <a href="http://www.scottbrownconsulting.com/services/">full service TrueCrypt Full Disk Encryption installation</a> for those who are most comfortable having an expert perform the procedure using streamlined tools. <a href="http://www.scottbrownconsulting.com/contact/">Contact me</a> for information.</p>
<p><b>Resources</b></p>
<p><a target="_blank" href="http://www.truecrypt.org">TrueCrypt Homepage</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">TrueCrypt Release Notes</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/downloads">TrueCrypt Download Latest Stable Version</a></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">Wikipedia: Advanced Encryption Standard</a></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/AES_instruction_set">Wikipedia: AES Instruction Set</a></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/Nehalem_(microarchitecture)#Westmere">Wikipedia: Intel Westmere Architecture</a></p>
<p><a target="_blank" href="http://software.intel.com/en-us/articles/intel-advanced-encryption-standard-aes-instructions-set/">Intel: Advanced Encryption Standard (AES) Instructions Set</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2010/07/truecrypt-7-0-released-supports-hardware-accelerated-aes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueCrypt 6.3a Released</title>
		<link>http://www.scottbrownconsulting.com/2009/11/truecrypt-6-3a-released/</link>
		<comments>http://www.scottbrownconsulting.com/2009/11/truecrypt-6-3a-released/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 03:33:44 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://www.scottbrownconsulting.com/?p=28</guid>
		<description><![CDATA[A minor maintenance update to disk encryption tool TrueCrypt was released yesterday. The release notes cite bugfixes only, so this update may be viewed as optional for users already running at least TrueCrypt 6.1a, the last &#8220;highly recommended&#8221; maintenance update, &#8230; <a href="http://www.scottbrownconsulting.com/2009/11/truecrypt-6-3a-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A minor maintenance update to disk encryption tool <a target="_blank" href="http://www.truecrypt.org">TrueCrypt</a> was released yesterday. The <a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">release notes</a> cite bugfixes only, so this update may be viewed as optional for users already running at least TrueCrypt 6.1a, the last &#8220;highly recommended&#8221; maintenance update, absent those experiencing any specific issues. <span id="more-28"></span></p>
<blockquote>
<p><b>6.3a</b></p>
<p>November 23, 2009</p>
<p><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Improvements and bug fixes:</b></p>
<ul>
<li>
<p>Minor improvements and bug fixes.&nbsp;&nbsp;(<i>Windows, Mac OS X, and Linux</i>)</p>
</li>
</ul>
</blockquote>
<p>Such glaring lack of detail in the release notes leaves upgraders unable to ascertain whether the newest fixes do or do not apply to their installations. I have complained about the lack of transparency <a href="http://www.scottbrownconsulting.com/2009/10/truecrypt-6-3-released/">before</a> though, so I guess the developers have not dropped by. Are there performance improvements, security fixes, new features, or all of the above? Do they apply only to a specific architecture, or everyone? TrueCrypt: your users need to know these things.</p>
<p>In any event I will perform the upgrade to 6.3a on my affected systems for the sake of keeping current.</p>
<p>If you don&#8217;t already have <a href="http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/">Full Disk Encryption</a> on your portable laptop / notebook / netbook computers, this fresh release presents an excellent opportunity to get serious about data theft prevention and fortify your security posture. I offer <a href="http://www.scottbrownconsulting.com/services/">full service TrueCrypt Full Disk Encryption installation</a> for those who are most comfortable having an expert perform the procedure using streamlined tools. <a href="http://www.scottbrownconsulting.com/contact/">Contact me</a> for information.</p>
<p><b>Resources</b></p>
<p><a target="_blank" href="http://www.truecrypt.org">TrueCrypt Homepage</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">TrueCrypt Release Notes</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/downloads">TrueCrypt Download Latest Stable Version</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2009/11/truecrypt-6-3a-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueCrypt 6.3 Released</title>
		<link>http://www.scottbrownconsulting.com/2009/10/truecrypt-6-3-released/</link>
		<comments>http://www.scottbrownconsulting.com/2009/10/truecrypt-6-3-released/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 21:48:31 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://www.scottbrownconsulting.com/?p=27</guid>
		<description><![CDATA[The latest maintenance release of disk encryption tool TrueCrypt made general availability today, adding most notably updated operating system support, including support for Windows 7 and Mac OS X 10.6. The release notes don&#8217;t indicate anything terrifically critical, so this &#8230; <a href="http://www.scottbrownconsulting.com/2009/10/truecrypt-6-3-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The latest maintenance release of disk encryption tool <a target="_blank" href="http://www.truecrypt.org">TrueCrypt</a> made general availability today, adding most notably updated operating system support, including support for Windows 7 and Mac OS X 10.6. The <a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">release notes</a> don&#8217;t indicate anything terrifically critical, so this release may be viewed as optional for users already running at least TrueCrypt 6.1a, the last &#8220;highly recommended&#8221; maintenance update. That being said, I&#8217;ll be immediately updating all installations. <span id="more-27"></span></p>
<blockquote>
<p><b>6.3</b></p>
<p>October 21, 2009</p>
<p><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New features:</b></p>
<ul>
<li>
<p>Full support for Windows 7.</p>
</li>
<li>
<p>Full support for Mac OS X 10.6 Snow Leopard. </p>
</li>
<li>
<p>The ability to configure selected volumes as &#8216;system favorite volumes&#8217;. This is useful, for example, when you have volumes that need to be mounted before system and application services start and before users start logging on. It is also useful when there are network-shared folders located on a TrueCrypt volume and you need to ensure that the network shares will be restored by the system each time it is restarted.  For more information, see the chapter &#8216;<i>Main Program Window</i>&#8216;, section &#8216;<i>Program Menu</i>&#8216;, subsection &#8216;<i>Volumes -&gt; Save Currently Mounted Volumes as Favorite</i>&#8216;  in the documentation.&nbsp;(<i>Windows</i>)</p>
</li>
</ul>
<p><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Improvements and bug fixes:</b></p>
<ul>
<li>
<p>&#8216;Favorite&#8217; volumes residing within partitions or dynamic volumes will no longer be affected by changes in disk device numbers, which may occur, e.g., when a drive is removed or added. &nbsp;(<i>Windows</i>)</p>
</li>
<li>
<p>Many other minor improvements and bug fixes.&nbsp;&nbsp;(<i>Windows, Mac OS X, and Linux</i>)</p>
</li>
</ul>
</blockquote>
<p>The release notes always say <i>&#8220;Many other minor improvements and bug fixes.&#8221;</i> For once I would like to know what exactly the improvements and bugfixes include in detail. If there&#8217;s one complaint I have about TrueCrypt it&#8217;s lack of transparency from the developers.</p>
<p>The <i>in situ</i> version update procedure is fairly trivial, overwriting the installed version of the application and rewriting an updated boot loader in the case of Full Disk Encryption. The end-to-end drive encryption pass does <i>not</i> have to be run again (a common concern). It is recommended (not enforced, but highly advisable) to burn an updated rescue CD for FDE systems since the boot loader has changed &#8211; I always do.</p>
<p>If you don&#8217;t already have <a href="http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/">Full Disk Encryption</a> on your portable laptop / notebook / netbook computers, this fresh release presents an excellent opportunity to get serious about data theft prevention and fortify your security posture. I offer <a href="http://www.scottbrownconsulting.com/services/">full service TrueCrypt Full Disk Encryption installation</a> for those who are most comfortable having an expert perform the procedure using streamlined tools. <a href="http://www.scottbrownconsulting.com/contact/">Contact me</a> for information.</p>
<p><b>Resources</b></p>
<p><a target="_blank" href="http://www.truecrypt.org">TrueCrypt Homepage</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/docs/?s=version-history">TrueCrypt Release Notes</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/downloads">TrueCrypt Download Latest Stable Version</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2009/10/truecrypt-6-3-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applications of TrueCrypt, Part 1: Encrypted CDs</title>
		<link>http://www.scottbrownconsulting.com/2009/07/applications-of-truecrypt-part-1-encrypted-cds/</link>
		<comments>http://www.scottbrownconsulting.com/2009/07/applications-of-truecrypt-part-1-encrypted-cds/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 17:53:11 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://www.scottbrownconsulting.com/?p=24</guid>
		<description><![CDATA[I previously discussed the merits of disk encryption as a countermeasure against the physical theft of portable computers and the leakage of private and confidential records that could ensue. But Full Disk Encryption is just scratching the surface of what &#8230; <a href="http://www.scottbrownconsulting.com/2009/07/applications-of-truecrypt-part-1-encrypted-cds/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I previously discussed the <a href="http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/">merits of disk encryption</a> as a countermeasure against the physical theft of portable computers and the leakage of private and confidential records that could ensue. But Full Disk Encryption is just scratching the surface of what can be done; the concept can and should be extended to all types of storage media, including portable media. I am currently using <a target="_blank" href="http://www.truecrypt.org/">TrueCrypt</a>&#8216;s encrypted file-container volume capabilities to create encrypted CD-R&#8217;s and USB memory sticks both as part of my own regular secure backup and data vaulting operations and in the implementation of secure backup and data portability solutions for my customers. <span id="more-24"></span></p>
<p>Why encrypt a CD? Well, think of it this way: You take a good deal of trouble to protect the data on your computer from disclosure, using access controls like login passwords, software countermeasures to protect against infection and intrusion, maybe you have even followed my advice and implemented Full Disk Encryption. Suppose, though, that you then burn some important documents (lets say financial, tax, or customer records or the blueprints to a sensitive project) from your carefully protected computer to a plain old data CD. You place it on your desk, or in a spindle in a drawer, or in your car, or in a box to take to the post office. Later, when you&#8217;re not looking, a bad guy snatches this CD and makes off with it. Just like that, he has unrestricted access to its contents without ever having to defeat any defenses. This is a wide open security gap.</p>
<p>Encrypted CDs close this gap in an airtight way. They are effective against the risk of general theft from the premises, the risk of interception in transport, the risk of disclosure to an untrusted agent in a bailment situation as when data vaulting, the risk of corporate espionage, jealous lovers, the IRS, you name it. Whoever snags it will be the proud new owner of a nice pile of random data that, unless they have 5,000 years and a supercomputer, is totally opaque to them.</p>
<p>Secure portable storage media may even be required for regulatory compliance in many contexts, as when storing sensitive customer data such as Social Security Numbers, credit card numbers, or health records. Data breaches in military, public, and commercial sectors have increasingly been making headlines. Regulatory authorities in Nevada and Massachusetts <a target="_blank" href="http://www.csoonline.com/article/467964/Mass._CMR_The_Darkness_and_the_Light">just passed laws</a> requiring the mandatory encryption of Social Security numbers, bank account numbers, and credit card numbers when carried on portable storage devices like flash drives, setting a precedent that will likely see legislation nationwide.</p>
<p><b>How to make an encrypted CD</b></p>
<p>The gist of the procedure is to create an encrypted file-container volume with TrueCrypt that is <i>just slightly less</i> than the size of the target media. I use a 695MB .tc container filesize for a 700MB CD-R. (You could choose a similar container filesize for a 4.7GB single layer DVD-R or 8.5GB dual layer DVD-R). The extra margin of 5MB is used to add some <a target="_blank" href="http://en.wikipedia.org/wiki/AutoRun">AutoRun</a> machinery to the CD so that when the finished disk is inserted, Windows shell takes you right into password entry for mounting the encapsulated volume.</p>
<p>1. Create an encrypted file-container volume on disk</p>
<ol type="a">
<li>Open TrueCrypt and start the Volume Creation Wizard by clicking &#8220;Create Volume&#8221;</li>
<li>Choose the default &#8220;Create an encrypted file container&#8221;</li>
<li>Choose the default &#8220;Standard TrueCrypt volume&#8221;</li>
<li>Specify a scratch path where you have sufficient space to hold the 695MB container file. A scratch partition is ideal for this. Make up a filename of your choice, I usually name it contents.tc or [yyyymmdd].tc. For the purposes of this example let&#8217;s name it <b>contents.tc</b></li>
<li>For Encryption Options the default algorithms are fine unless you care to change them</li>
<li>Enter a volume size of 695MB</li>
<p align=center><img src="http://www.scottbrownconsulting.com/images/20090725a.jpg" alt="TrueCrypt Volume Creation Wizard" width="515" height="310" /></p>
<li>Specify a password, pick a good one</li>
<li>The documentation says Windows has problems with NTFS on read-only media, but I&#8217;ve never had a problem and always choose NTFS</li>
<li>Move the mouse around to populate the Random Pool, then finally click &#8220;Format&#8221; to create the container file</li>
<li>Writing of the container file shouldn&#8217;t take too long, seconds to a minute depending on your system, then you can exit</li>
</ol>
<p>2. Mount the file-container volume and copy your content into it</p>
<ol type="a">
<li>Open the container file you just created, <b>contents.tc</b>, for mounting with TrueCrypt. If you named it with a .tc extension a shell association exists and you can just double-click on it to be taken right into TrueCrypt with it already selected as the volume file.</li>
<li>An available drive letter should already be selected. Click &#8220;Mount&#8221; and enter your password to mount the encrypted volume as that virtual drive.</li>
<li>You can now open that drive letter and populate it with content, whatever is the target data that will be going on the CD. Remember that the drive has a 695MB capacity.</li>
<li>When done, dismount the volume from TrueCrypt using the &#8220;Dismount&#8221; button.</li>
</ol>
<p>3. For a convenient and elegant touch, use TrueCrypt&#8217;s Traveler Disk Setup utility to generate some <a target="_blank" href="http://en.wikipedia.org/wiki/AutoRun">AutoRun</a> machinery that will start automatically when the finished disk is inserted</p>
<ol type="a">
<li>Start the utility from TrueCrypt &gt; &#8220;Tools&#8221; menu &gt; &#8220;Traveler Disk Setup&#8230;&#8221;</li>
<li>For &#8220;Create traveler disk files at (traveler disk root directory)&#8221; box, browse for and locate the scratch path you used in step 1 above, the path where the container file resides</li>
<li>Uncheck &#8220;Include TrueCrypt Volume Creation Wizard&#8221;, you don&#8217;t need it for this use case</li>
<li>Under AutoRun Configuration choose &#8220;Auto-mount TrueCrypt volume (specified below)&#8221;</li>
<li>For &#8220;TrueCrypt volume to mount (relative to traveler disk root)&#8221; box, browse for and locate the container file itself</li>
<li>&#8220;Open Explorer window for mounted volume&#8221; should already be checked</li>
<p align=center><img src="http://www.scottbrownconsulting.com/images/20090725b.jpg" alt="TrueCrypt Traveler Disk Setup" width="456" height="462" /></p>
<li>Finally, click &#8220;Create&#8221; to generate the AutoRun components. Traveler Disk Setup quickly creates a folder named <b>TrueCrypt</b> with a little bit of plumbing and a file named <b>autorun.inf</b> in the target path, then you can close out of the utility</li>
</ol>
<p>4. Burn the CD</p>
<ol type="a">
<li>Using CD burning software of your choice (I use Nero, but use whatever you have on your machine) create a new Data CD (ISO) compilation</li>
<li>Place the following files into it: <b>contents.tc</b>, <b>autorun.inf</b>, and the <b>TrueCrypt</b> folder</li>
<li>Notice importantly what is happening: You are burning the container &#8211; <i>not</i> its encapsulated contents &#8211; and the AutoRun machinery to media</li>
<li>Burn the compilation to blank media, label it, and test it</li>
</ol>
<p>Upon insertion to a computer with AutoPlay enabled, this CD should now prompt you for the password, mount the encrypted volume automatically to an available drive letter, and open an Explorer window to that drive. And because its runtime components are packaged on the disk, it will work even on a machine that doesn&#8217;t have TrueCrypt natively installed.</p>
<p>Many security conscious users (myself included) disable AutoPlay because it poses something of a security risk; in this case, you can still mount <b>contents.tc</b> the long way, using TrueCrypt&#8217;s main dialog, you just sacrifice some convenience.</p>
<p>The developers of TrueCrypt have remarked that they plan to add support for Raw CD/DVD volumes in a <a target="_blank" href="http://www.truecrypt.org/future">future</a> release, which ought to further simplify this procedure.</p>
<p>Stay tuned to this space for Part 2: Encrypted USB Memory Sticks, where I plan to share a very useful nested AutoRun technique.</p>
<p><b>Resources</b></p>
<p><a target="_blank" href="http://www.truecrypt.org/">TrueCrypt Homepage</a></p>
<p><a target="_blank" href="http://www.truecrypt.org/docs/?s=truecrypt-portable">TrueCrypt Traveler Mode</a></p>
<p><a target="_blank" href="http://en.wikipedia.org/wiki/AutoRun">Wikipedia: AutoRun</a></p>
<p><a target="_blank" href="http://www.mxlogic.com/securitynews/identity-theft/extent-of-identity-theft-and-data-breaches-largely-hidden993.cfm">Extent of identity theft and data breaches largely hidden</a></p>
<p><a target="_blank" href="http://www.networkworld.com/news/2009/072309-mass-201-cmr-17-a.html">Mass 201 CMR 17: A Survival Guide for the Anxious</a></p>
<p><a target="_blank" href="http://www.csoonline.com/article/467964/Mass._CMR_The_Darkness_and_the_Light">Mass 201 CMR 17: The Darkness and the Light</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2009/07/applications-of-truecrypt-part-1-encrypted-cds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full Disk Encryption Service Now Available</title>
		<link>http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/</link>
		<comments>http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 23:06:52 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://192.168.0.5/?p=7</guid>
		<description><![CDATA[Having completed developing and testing a deployment procedure, I am pleased to make available to my customers a brand new service offering: Full Disk Encryption for laptops. The Federal Trade Commission estimates that as many as 9 million Americans have &#8230; <a href="http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Having completed developing and testing a deployment procedure, I am pleased to make available to my customers a brand new service offering: Full Disk Encryption for laptops. <span id="more-7"></span></p>
<p>The Federal Trade Commission <a href="http://www.ftc.gov/bcp/edu/microsites/idtheft/consumers/about-identity-theft.html" target="_blank">estimates</a> that as many as 9 million Americans have their identities stolen each year, and that identity theft is the fastest growing crime in the nation.</p>
<p>If your laptop was lost or stolen, the new &#8220;owner&#8221; could have unrestricted access to view all your private documents, email, pictures, and could even gain access to financial accounts. Your ordinary system login passwords (if you use them) afford you no real protection and only a false sense of security; an unscrupulous individual can bypass Windows passwords and BIOS passwords by simply detaching the drive and connecting it as an external data drive to another computer, rendering all its contents completely visible.</p>
<p>There is a simple and effective countermeasure that protects you against this serious privacy risk, rendering your confidential data totally useless to any unauthorized party who gets their hands on it. Yet not nearly enough users leverage this crucial security capability.</p>
<p><a href="http://en.wikipedia.org/wiki/Full_disk_encryption" target="_blank">Full Disk Encryption</a> (FDE) is software (or hardware) which encrypts every bit of data that goes on a disk, from start to end, automatically, transparently, in real-time. You choose a password that unlocks the encryption, which must be entered whenever starting up the computer. Without the correct password, the contents of the disk are rendered completely useless to any thief, effectively a mass of random data.</p>
<p>Note that this is a much more robust level of security than an ordinary startup password. The data on the disk is stored encrypted at all times and at no time is unencrypted data written to the disk. A low level driver layer intervenes between the disk and the rest of the operating system, to whose point of view the disk is just ordinary unencrypted storage.</p>
<p>I have deployed an industry standard Full Disk Encryption software solution for the protection of my own systems, including not only laptops but also external storage devices. I am using it every day and finding it to be reliable, mature, optimized, and to cause essentially imperceptible (e.g. no) performance impact.</p>
<p>I am recommending all users of portable laptop and notebook computers to contact me to set up an appointment to have this vital security capability expertly installed to your systems. Don&#8217;t risk a data breach that could make you the victim of identity theft or the leakage of your personal documents and files to prying eyes. Even if you don&#8217;t have anything &#8220;important&#8221; on your computer, why allow some rogue individual the pleasure of viewing your personal documents, pictures, and email? Lock them out with Full Disk Encryption.</p>
<p><strong>Resources</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Full_disk_encryption" target="_blank">Wikipedia: Full Disk Encryption</a></p>
<p><a href="http://bizsecurity.about.com/od/windowsdesktopsecurity/a/top8fulldisk.htm" target="_blank">About.com Business Security: 8 Reasons for Full Disk Encryption</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottbrownconsulting.com/2009/02/full-disk-encryption-service-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

