<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>#!/bin/blog &#187; encryption</title>
	<atom:link href="http://binblog.info/tag/encryption/feed/" rel="self" type="application/rss+xml" />
	<link>http://binblog.info</link>
	<description>&#34;It&#039;s hard to be humble when you&#039;re so fscking big!&#34;</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:05:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='binblog.info' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>#!/bin/blog &#187; encryption</title>
		<link>http://binblog.info</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://binblog.info/osd.xml" title="#!/bin/blog" />
	<atom:link rel='hub' href='http://binblog.info/?pushpress=hub'/>
		<item>
		<title>Re-Layering LVM encryption</title>
		<link>http://binblog.info/2009/02/14/re-layering-lvm-encryption/</link>
		<comments>http://binblog.info/2009/02/14/re-layering-lvm-encryption/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 22:48:43 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[UNIX & Linux]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[luks]]></category>
		<category><![CDATA[lvm]]></category>

		<guid isPermaLink="false">http://binblog.wordpress.com/?p=523</guid>
		<description><![CDATA[In an earlier article, I had promised live migration of LVM data to encrypted storage. I was able to acquire an external SATA disk for my backup server today, so here we go. The backup server is running headless, so I opted to store the key locally for now. Yes, I&#8217;m a moron. But hey, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=binblog.info&amp;blog=2416043&amp;post=523&amp;subd=binblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://binblog.wordpress.com/2009/01/18/managing-encrypted-logical-volumes/">In an earlier article</a>, I had promised live migration of LVM data to encrypted storage. I was able to acquire an external SATA disk for my backup server today, so here we go. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><img src="http://binblog.files.wordpress.com/2009/02/crypt-lvm1.png" alt="crypt-lvm1" title="crypt-lvm1" width="366" height="160" class="alignnone size-full wp-image-526" /></p>
<p>The backup server is running headless, so I opted to store the key locally for now. Yes, I&#8217;m a moron. But hey, at least it&#8217;s not on the same medium.</p>
<p><tt>
<pre># dd if=/dev/urandom of=/etc/luks.key count=256 ; chmod 600 /etc/luks.key</pre>
<p></tt></p>
<p>As long as the disk isn&#8217;t the only one, I can&#8217;t predict the device name it will come up as. Thus, it is referenced by its udev ID when formatting it with LUKS:</p>
<p><tt>
<pre># cryptsetup luksFormat /dev/disk/by-id/scsi-SATA_WD_My_Book_WD-WCAU123-part1 /etc/luks.key</tt></pre>
<p>Open the new LUKS device:</p>
<p><tt>
<pre># cryptsetup luksOpen -d /etc/luks.key /dev/disk/by-id/scsi-SATA_WD_My_Book_WD-WCAU123-part1 pv_crypt_1</pre>
<p></tt></p>
<p>The entry in /etc/crypttab makes the encrypted device come up on boot:</p>
<p>/etc/crypttab:<br />
<tt>
<pre>pv_crypt_1 /dev/disk/by-id/scsi-SATA_WD_My_Book_WD-WCAU123-part1 /etc/luks.key luks</pre>
<p></tt></p>
<p>Create a new Physical Volume on the crypted device:</p>
<p><tt>
<pre># pvcreate /dev/mapper/pv_crypt_1</pre>
<p></tt></p>
<p>Now the Volume Group can be extended with the new PV:</p>
<p><tt>
<pre># vgextend datavg /dev/mapper/pv_crypt_1</pre>
<p></tt></p>
<p>I rebooted at this point, in order to see if everything would come up as expected. </p>
<p>The new PV is now visible:</p>
<p><tt>
<pre># pvs
  PV         VG     Fmt  Attr PSize   PFree
  /dev/dm-0  datavg lvm2 a-   931.51G 931.51G
  /dev/sdb1  datavg lvm2 a-   465.76G      0</pre>
<p></tt></p>
<p>The next step is to migrate the VG content to the new PV. Migration will take a very long time if the disk is full, so you may want to use a screen session for this. </p>
<p><tt>
<pre># pvmove -v  /dev/sdb1</pre>
<p></tt></p>
<p>This is a classical LVM operation that may be cancelled at any time and picked up later. In fact, my Promise SATA driver crashed hard in the middle of the operation, and everything went along fine after a kernel upgrade.</p>
<p>When pvmove is done, throw out the original PV from the volume group:</p>
<p><tt>
<pre># vgreduce datavg /dev/sdb1</tt></pre>
<p>The Volume Group is now on encrypted storage.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/binblog.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/binblog.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/binblog.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/binblog.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/binblog.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/binblog.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/binblog.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/binblog.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/binblog.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/binblog.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/binblog.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/binblog.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/binblog.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/binblog.wordpress.com/523/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=binblog.info&amp;blog=2416043&amp;post=523&amp;subd=binblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://binblog.info/2009/02/14/re-layering-lvm-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">martin</media:title>
		</media:content>

		<media:content url="http://binblog.files.wordpress.com/2009/02/crypt-lvm1.png" medium="image">
			<media:title type="html">crypt-lvm1</media:title>
		</media:content>
	</item>
		<item>
		<title>Managing encrypted logical volumes</title>
		<link>http://binblog.info/2009/01/18/managing-encrypted-logical-volumes/</link>
		<comments>http://binblog.info/2009/01/18/managing-encrypted-logical-volumes/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 12:32:56 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[UNIX & Linux]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[luks]]></category>
		<category><![CDATA[lvm]]></category>

		<guid isPermaLink="false">http://binblog.wordpress.com/?p=500</guid>
		<description><![CDATA[Worked on this with G. the other day. Create the underlying logical volume: lvcreate -n datalv_crypted -L 1G vg00 Initialize a LUKS crypto device on the logical volume: cryptsetup luksFormat /dev/vg00/datalv_crypted If you have lost your mind and want to keep the passphrase in a file (which is what G.&#8217;s weirdo client had asked for): [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=binblog.info&amp;blog=2416043&amp;post=500&amp;subd=binblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Worked on this with G. the other day.</p>
<p>Create the underlying logical volume:<br />
<code>lvcreate -n datalv_crypted -L 1G vg00</code></p>
<p>Initialize a LUKS crypto device on the logical volume:<br />
<code>cryptsetup luksFormat /dev/vg00/datalv_crypted</code></p>
<p>If you have lost your mind and want to keep the passphrase in a file (which is what G.&#8217;s weirdo client had asked for):<br />
<code>dd if=/dev/urandom of=/etc/i_am_dumb count=256<br />
cryptsetup luksFormat /dev/vg00/datalv_crypted /etc/i_am_dumb</code></p>
<p>Bring up the crypto device from the encrypted logical volume:<br />
<code>cryptsetup luksOpen /dev/vg00/datalv_crypted data # optionally -d /etc/i_am_dumb</code></p>
<p>Create a file system on the crypto device, <em>/dev/mapper/data</em>, which has now sprung to life:<br />
<code>mkfs.ext3 /dev/mapper/data</code></p>
<p>Enter the crypto device in <em>/etc/fstab</em>:<br />
<code>/dev/mapper/data /data ext3 defaults 0 0</code></p>
<p>Don&#8217;t forget to create the mount point:<br />
<code>mkdir /data</code></p>
<p>Enter the encrypted logical volume in <em>/etc/crypttab</em>. Substitute &#8220;none&#8221; with <em>/etc/i_am_dumb</em> if you are keeping the passphrase on the system.<br />
<code>data /dev/vg00/datalv_crypted none luks</code></p>
<p>Reboot. You will be prompted for the passphrase on bootup, unless you&#8217;re keeping it in a file. The new file system will be mounted on <em>/data</em>.</p>
<p>The usual process for resizing file systems now has to be extended by an additional step:</p>
<p><code>lvresize -L +1G /dev/vg00/datalv_crypted<br />
cryptsetup resize /dev/mapper/data<br />
resize2fs /dev/mapper/data</code></p>
<p>That&#8217;s all there is to it. In another installment, I will hopefully write about encrypted physical volumes, allowing live migration of an entire volume group to encrypted storage during full operation. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>With the technical details out of the way, some additional words about keeping the passphrase on-disk: </p>
<p>If you work for someone who wants this, he&#8217;s not neccessarily an idiot, but maybe just a bit naive. It is your duty as the expert to explain why keeping the passphrase in-band with the encrypted data is nothing more than just a waste of CPU cycles. Seriously. This, G., means you. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/binblog.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/binblog.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/binblog.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/binblog.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/binblog.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/binblog.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/binblog.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/binblog.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/binblog.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/binblog.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/binblog.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/binblog.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/binblog.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/binblog.wordpress.com/500/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=binblog.info&amp;blog=2416043&amp;post=500&amp;subd=binblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://binblog.info/2009/01/18/managing-encrypted-logical-volumes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">martin</media:title>
		</media:content>
	</item>
		<item>
		<title>Know your PGP implementation</title>
		<link>http://binblog.info/2008/03/12/know-your-pgp-implementation/</link>
		<comments>http://binblog.info/2008/03/12/know-your-pgp-implementation/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 07:53:59 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[cryptography]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[gnupg]]></category>
		<category><![CDATA[mime]]></category>
		<category><![CDATA[pgp]]></category>

		<guid isPermaLink="false">http://binblog.wordpress.com/?p=76</guid>
		<description><![CDATA[Being an expert for all sorts of application layer encryption, I currently work on a call for tenders for a client who wants to implement centralized e-mail encryption for his 30k-something users. While the X.509 standard for e-mail, S/MIME, can safely be considered a generally available standard nowadays, it&#8217;s pretty scary to see that certain [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=binblog.info&amp;blog=2416043&amp;post=76&amp;subd=binblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Being an expert for all sorts of application layer encryption, I currently work on a call for tenders for a client who wants to implement centralized e-mail encryption for his 30k-something users.</p>
<p>While the X.509 standard for e-mail, <a href="http://www.imc.org/ietf-smime/index.html">S/MIME</a>, can safely be considered a generally available standard nowadays, it&#8217;s pretty scary to see that certain vendors of encryption software for the enterprise have a very sketchy understanding of what PGP encrypted communication looks like in the real world. They seem to believe that PGP isn&#8217;t actually that relevant, while on the other hand, real people and real corporations have been using PGP to protect their (trade) secrets long before those PGP vendors had even been founded.</p>
<p>There are currently three major methods for PGP encryption of e-mail in the wild. One of these is an actual internet standard, one is a customary procedure, and the other, oh well&#8230;:</p>
<p><strong>1) PGP/MIME</strong></p>
<p>PGP/MIME is the only official standard for PGP e-mail encryption. It is defined in <a href="http://www.ietf.org/rfc/rfc3156.txt">RFC 3156</a> (&#8220;MIME Security with OpenPGP&#8221;). Put simply, PGP/MIME takes the entire MIME encoded message and wraps another MIME layer around it. This &#8220;outer&#8221; layer contains either the encrypted message or it contains the original MIME encoded message plus an attachment containing the detached signature. PGP/MIME is widely supported by products that integrate e-mail and PGP encryption.</p>
<p><strong>2) &#8220;PGP-Inline&#8221;</strong></p>
<p>PGP-Inline is a retroactively applied name for the legacy method for PGP encryption that was used in the early days of PGP, before the introduction of PGP/MIME. It does not constitute an actual standard. Instead, there only is a certain behaviour that users have learned to expect from PGP-Inline messages. </p>
<p>A PGP-Inline message contains the message text in ASCII-armored form, either encrypted or clearsigned. It is evident that MIME multipart/alternative e-mails that contain the message text in both text and HTML form can not be handled very well in such an environment. </p>
<p>Attachments are encrypted each on their own. The file <em>example.pdf</em> is attached as <em>example.pdf.asc</em>, <em>example.pdf.gpg</em> or <em>example.pdf.pgp</em>, depending on implementation and user preference. As far as I can tell, there is no accepted standard for signed attachments in PGP-Inline. A well-behaved implementation of PGP-Inline can be observed in the <a href="http://enigmail.mozdev.org/">Enigmail</a> plugin for the Thunderbird MUA when PGP/MIME is turned off. This implementation uses detached signatures for signing attachments.</p>
<p>Vendors usually refer to <a href="http://www.ietf.org/rfc/rfc4880.txt">RFC 4880</a> (&#8220;OpenPGP Message Format&#8221;) when being asked about PGP-Inline. While having a certain relevance, this RFC does not mention anything related to E-Mail. It is therefore in fact unsuitable as a guideline for the proper behaviour of PGP-Inline. Don&#8217;t get fooled by RFC mumbo-jumbo.</p>
<p><strong>3) &#8220;Partitioned PGP&#8221;</strong></p>
<p>Partitioned PGP can be described as &#8220;PGP-Inline with cloaked filenames&#8221;. Long after PGP/MIME had been widely accepted as a standard, the PGP corporation introduced their &#8220;Universal&#8221; product line. PGP Universal extends the commonpractice PGP-Inline method by concealing the filename. Our file <em>example.pdf</em> from the earlier example gets renamed to <em>Attachment.pgp</em>. The original filename is hidden inside the ciphertext in the &#8220;Literal Data Packet (Tag 11)&#8221; as described by RFC 4880. </p>
<p>Partitioned PGP carries over the original MIME Content-Type tags of Attachments by storing them inside proprietary MIME headers:</p>
<p><code><tt>X-Content-PGP-Universal-Saved-Content-Transfer-Encoding: quoted-printable<br />
X-Content-PGP-Universal-Saved-Content-Type: text/html; charset="iso-8859-1"</tt></code></p>
<p>To my best of knowledge, these extensions are not publicly documented. During my research I have only come across an <a href="http://www.imc.org/ietf-openpgp/mail-archive/msg09389.html">archived e-mail from a developer at the PGP corporation</a> that outlines the technique. This particular e-mail is my only point of reference when it comes to the technical details of partitioned PGP.</p>
<p>Restoration of these headers and of the original filename has been implemented by all relevant commercial vendors, most likely through a small amount of reverse engineering. The same applies for the HTML part of multipart/alternative messages, which PGP Universal attaches as <em>PGPexch.htm</em>. A skilled developer can easily understand the HTML part&#8217;s encoding by closely examining encrypted messages from PGP Universal. </p>
<p><strong>Conclusion</strong></p>
<p>While PGP/MIME will usually be supported by most communication partners, PGP-Inline still has lots of relevance as the lowest common denominator. As such, it should be as interoperable as possible, despite the lack of a hard and fast specification. Users that have no integration of PGP into their e-mail software will resort to exactly those techniques that are usually considered &#8220;PGP-Inline&#8221;: Encrypt the message, and encrypt each attachment on its own. This is where we all came from, before PGP/MIME.</p>
<p>The PGP corporation claim that their &#8220;Partitioned PGP&#8221; is identical with PGP-Inline. This is technically true only if a PGP-Inline implementation&#8217;s default mode of operation is to extract the original filename. If this is not the case, &#8220;Partitioned PGP&#8221; yields decrypted files that are named <em>Attachment</em>, <em>Attachment1</em> and so on, which offer no clue about the original file name. While experienced UNIX users can easily determine the file type using the <em>file</em> command, typical end users have no proper means of handling the situation.</p>
<p>The PGP corporation may have their reasons for extending PGP-Inline in such a way. Cloaking the file name is fairly reasonable indeed. However, PGP/MIME has always been doing exactly the same by wrapping the MIME encoded message with its attachments into an opaque PGP layer. This was standardized and available long before the PGP corporation had even been founded. </p>
<p>I find it not very hard to believe that the manoeuver of extending PGP-Inline in a proprietary way is an attempt to create market share by forcing a de-facto standard into existence. With a big name such as &#8220;PGP&#8221;, everything seems possible. Also, if the PGP corporation really were that serious about leakage of potential confidential information, they should have taken care of the message headers as well. Instead, they chose to create an amount of incompatibility, that is covered by some RFC and appears to be subtle, but in fact irritates users and support staff on the receiving side in the worst possible way.</p>
<p>There is no doubt that the PGP corporation employs honest cryptography specialists that are a lot smarter than I will ever be, no matter how much I learn. Their marketing and product management departments, however, have created an enormous amount of distrust in me. On one hand, they&#8217;ll promise you heaven and earth with their big name and their global presence. On the other hand, they seem to be completely disconnected from the PGP community and appear to not have an idea of how cryptography has always been used in real, day-to-day production environments. Which is a real pity. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/binblog.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/binblog.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/binblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/binblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/binblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/binblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/binblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/binblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/binblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/binblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/binblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/binblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/binblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/binblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/binblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/binblog.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=binblog.info&amp;blog=2416043&amp;post=76&amp;subd=binblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://binblog.info/2008/03/12/know-your-pgp-implementation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">martin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
