<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Buccaneers Guild</title>
	<atom:link href="http://buccaneersguild.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://buccaneersguild.com</link>
	<description>Table Top Pen and Paper RPGs</description>
	<lastBuildDate>Sat, 07 Apr 2012 19:55:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Playing with the DDI Character Builder API by Iain M Norman</title>
		<link>http://buccaneersguild.com/ddi-character-builder-api-hacking/comment-page-1/#comment-5789</link>
		<dc:creator>Iain M Norman</dc:creator>
		<pubDate>Sat, 07 Apr 2012 19:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=444#comment-5789</guid>
		<description>Thanks for the clarification.</description>
		<content:encoded><![CDATA[<p>Thanks for the clarification.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with the DDI Character Builder API by tec-goblin</title>
		<link>http://buccaneersguild.com/ddi-character-builder-api-hacking/comment-page-1/#comment-5788</link>
		<dc:creator>tec-goblin</dc:creator>
		<pubDate>Sat, 07 Apr 2012 18:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=444#comment-5788</guid>
		<description>By the way, in the aforementioned Windows 8 code I think the correct algorithm is AES_CBC_PKCS7.</description>
		<content:encoded><![CDATA[<p>By the way, in the aforementioned Windows 8 code I think the correct algorithm is AES_CBC_PKCS7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with the DDI Character Builder API by Iain M Norman</title>
		<link>http://buccaneersguild.com/ddi-character-builder-api-hacking/comment-page-1/#comment-5786</link>
		<dc:creator>Iain M Norman</dc:creator>
		<pubDate>Sat, 07 Apr 2012 14:43:11 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=444#comment-5786</guid>
		<description>I don&#039;t remember off hand. A quick check with fiddler or something will tell you.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t remember off hand. A quick check with fiddler or something will tell you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with the DDI Character Builder API by midavis</title>
		<link>http://buccaneersguild.com/ddi-character-builder-api-hacking/comment-page-1/#comment-5766</link>
		<dc:creator>midavis</dc:creator>
		<pubDate>Thu, 05 Apr 2012 18:08:11 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=444#comment-5766</guid>
		<description>What are the web service urls</description>
		<content:encoded><![CDATA[<p>What are the web service urls</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hurried Handouts #4 — Creating Quick Parchment in Photoshop Video by The RPG Guy</title>
		<link>http://buccaneersguild.com/hurried-handouts-4-creating-quick-parchment-in-photoshop-video/comment-page-1/#comment-5312</link>
		<dc:creator>The RPG Guy</dc:creator>
		<pubDate>Mon, 27 Feb 2012 23:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=168#comment-5312</guid>
		<description>I like the end result of this! Very nice - thank you!</description>
		<content:encoded><![CDATA[<p>I like the end result of this! Very nice &#8211; thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with the DDI Character Builder API by tec-goblin</title>
		<link>http://buccaneersguild.com/ddi-character-builder-api-hacking/comment-page-1/#comment-5191</link>
		<dc:creator>tec-goblin</dc:creator>
		<pubDate>Fri, 17 Feb 2012 06:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=444#comment-5191</guid>
		<description>Yes, though I converted the code to WinRT and have a COMException on the Encrypt line. It seems to me like a bug (I sent it to Microsoft):
private static byte[] SimpleEncrypt(string value, string key)
        {
            var simpleAlgorithm = GetSimpleAlgorithm(key);
            var encryptedBuffer = CryptographicEngine.Encrypt(simpleAlgorithm.Item1,
                                                              CryptographicBuffer.ConvertStringToBinary(value, BinaryStringEncoding.Utf8),
                                                              simpleAlgorithm.Item2);
            //bug here with CBC
            var result = new byte[encryptedBuffer.Length];
            encryptedBuffer.CopyTo(result);
            return result;
        }

        private static Tuple GetSimpleAlgorithm(string key)
        {
            var provider = SymmetricKeyAlgorithmProvider.OpenAlgorithm(&quot;AES_CBC&quot;);
            var keyAsBinary = CryptographicBuffer.ConvertStringToBinary(key, BinaryStringEncoding.Utf8);
            var source = HashAlgorithmProvider.OpenAlgorithm(HashAlgorithmNames.Sha256).HashData(keyAsBinary);
            var shortKey = CryptographicBuffer.CreateFromByteArray(UTF8Encoding.UTF8.GetBytes(key).Take((int)provider.BlockLength).ToArray());

            return new Tuple(provider.CreateSymmetricKey(source), shortKey);
        }</description>
		<content:encoded><![CDATA[<p>Yes, though I converted the code to WinRT and have a COMException on the Encrypt line. It seems to me like a bug (I sent it to Microsoft):<br />
private static byte[] SimpleEncrypt(string value, string key)<br />
        {<br />
            var simpleAlgorithm = GetSimpleAlgorithm(key);<br />
            var encryptedBuffer = CryptographicEngine.Encrypt(simpleAlgorithm.Item1,<br />
                                                              CryptographicBuffer.ConvertStringToBinary(value, BinaryStringEncoding.Utf8),<br />
                                                              simpleAlgorithm.Item2);<br />
            //bug here with CBC<br />
            var result = new byte[encryptedBuffer.Length];<br />
            encryptedBuffer.CopyTo(result);<br />
            return result;<br />
        }</p>
<p>        private static Tuple GetSimpleAlgorithm(string key)<br />
        {<br />
            var provider = SymmetricKeyAlgorithmProvider.OpenAlgorithm(&#8220;AES_CBC&#8221;);<br />
            var keyAsBinary = CryptographicBuffer.ConvertStringToBinary(key, BinaryStringEncoding.Utf8);<br />
            var source = HashAlgorithmProvider.OpenAlgorithm(HashAlgorithmNames.Sha256).HashData(keyAsBinary);<br />
            var shortKey = CryptographicBuffer.CreateFromByteArray(UTF8Encoding.UTF8.GetBytes(key).Take((int)provider.BlockLength).ToArray());</p>
<p>            return new Tuple(provider.CreateSymmetricKey(source), shortKey);<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coffeebreak Cartography #4 &#8211; The Mutant Future Megadungeon by Iain M Norman</title>
		<link>http://buccaneersguild.com/coffeebreak-cartography-4-the-mutant-future-megadungeon/comment-page-1/#comment-5188</link>
		<dc:creator>Iain M Norman</dc:creator>
		<pubDate>Thu, 16 Feb 2012 22:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=197#comment-5188</guid>
		<description>Here you go Kenny:

&lt;a href=&quot;http://buccaneersguild.com/coffeebreak-cartography-5-creating-a-modern-style-map-with-flash-and-illustrator/&quot; title=&quot;Coffeebreak Cartography #5 – Creating a Modern Style Map with Flash and Illustrator&quot; rel=&quot;nofollow&quot;&gt;Creating a Modern Style Map with Flash and Illustrator&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Here you go Kenny:</p>
<p><a  href="http://buccaneersguild.com/coffeebreak-cartography-5-creating-a-modern-style-map-with-flash-and-illustrator/" title="Coffeebreak Cartography #5 – Creating a Modern Style Map with Flash and Illustrator" rel="nofollow">Creating a Modern Style Map with Flash and Illustrator</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coffeebreak Cartography #4 &#8211; The Mutant Future Megadungeon by Kenny D</title>
		<link>http://buccaneersguild.com/coffeebreak-cartography-4-the-mutant-future-megadungeon/comment-page-1/#comment-5187</link>
		<dc:creator>Kenny D</dc:creator>
		<pubDate>Thu, 16 Feb 2012 22:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=197#comment-5187</guid>
		<description>This is awesome!  I&#039;d love to see a tutorial for how you did this.</description>
		<content:encoded><![CDATA[<p>This is awesome!  I&#8217;d love to see a tutorial for how you did this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with the DDI Character Builder API by Iain M Norman</title>
		<link>http://buccaneersguild.com/ddi-character-builder-api-hacking/comment-page-1/#comment-4829</link>
		<dc:creator>Iain M Norman</dc:creator>
		<pubDate>Fri, 13 Jan 2012 09:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=444#comment-4829</guid>
		<description>A metro style app?</description>
		<content:encoded><![CDATA[<p>A metro style app?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with the DDI Character Builder API by tec-goblin</title>
		<link>http://buccaneersguild.com/ddi-character-builder-api-hacking/comment-page-1/#comment-4828</link>
		<dc:creator>tec-goblin</dc:creator>
		<pubDate>Fri, 13 Jan 2012 08:01:15 +0000</pubDate>
		<guid isPermaLink="false">http://buccaneersguild.com/?p=444#comment-4828</guid>
		<description>Thanks Iain! It works like a charm! I&#039;m making a Windows 8 character viewer. I&#039;ll try to send you the end result ;).</description>
		<content:encoded><![CDATA[<p>Thanks Iain! It works like a charm! I&#8217;m making a Windows 8 character viewer. I&#8217;ll try to send you the end result <img src='http://buccaneersguild.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.881 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-19 11:35:19 -->

