<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1.3" -->
<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/"
>

<channel>
	<title>Aquatic Weblog</title>
	<link>http://aquaticmac.com/blog</link>
	<description>Interoperability or bust.</description>
	<pubDate>Mon, 19 Feb 2007 06:49:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1.3</generator>
	<language>en</language>

		<item>
		<title>NSData Encryption Extensions</title>
		<link>http://aquaticmac.com/blog/archives/7</link>
		<comments>http://aquaticmac.com/blog/archives/7#comments</comments>
		<pubDate>Wed, 06 Jul 2005 01:22:04 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/7</guid>
		<description><![CDATA[	I&#8217;ve added a new section to the website for little cocoa code snippets that might be useful to people.  The first one is a category that extends NSData to provide AES encryption.  This makes it really simple to have encrypted data for lightweight data stores.  The OpenSSL version that ships with OS [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve added a <a href="http://aquaticmac.com/cocoa.php">new section</a> to the website for little cocoa code snippets that might be useful to people.  The first one is a category that extends NSData to provide AES encryption.  This makes it really simple to have encrypted data for lightweight data stores.  The OpenSSL version that ships with OS X is pretty out of date, unfortunately, and there is a bug with the CBC mode of AES in libCrypto that required me to do some custom block padding, but it&#8217;s not too big of a deal.  Other algorithms (Blowfish, RC5, etc.) could be supported more easily than AES because they don&#8217;t suffer from this bug, but since Rijndael is the standard, I thought it was the best choice.  Here&#8217;s to hoping we get a new version of OpenSSL with Leopard.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/7/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Now Accepting Beta Testers</title>
		<link>http://aquaticmac.com/blog/archives/8</link>
		<comments>http://aquaticmac.com/blog/archives/8#comments</comments>
		<pubDate>Tue, 26 Jul 2005 00:50:54 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/8</guid>
		<description><![CDATA[	Interesting in being a beta tester for AquaticPrime?  Send an email to lucas@aquaticmac.com and I&#8217;ll add you to the team.  I&#8217;m on track for an early August release at this point in time.

]]></description>
			<content:encoded><![CDATA[	<p>Interesting in being a beta tester for AquaticPrime?  Send an email to <a href="mailto:lucas@aquaticmac.com" rel="external">lucas@aquaticmac.com</a> and I&#8217;ll add you to the team.  I&#8217;m on track for an early August release at this point in time.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/8/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>AquaticPrime 1.0 Released</title>
		<link>http://aquaticmac.com/blog/archives/9</link>
		<comments>http://aquaticmac.com/blog/archives/9#comments</comments>
		<pubDate>Mon, 12 Sep 2005 14:20:41 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/9</guid>
		<description><![CDATA[	I&#8217;ve just released AquaticPrime 1.0, the first open source software license system on Mac OS X.  The AquaticPrime package consists of the following things:
	AquaticPrime Developer - This is the application which you use manage keys for your products, generate license files, and get license information.
AquaticPrime - This is the licensing library itself, in both [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve just released <a href="http://www.aquaticmac.com/">AquaticPrime 1.0</a>, the first open source software license system on Mac OS X.  The AquaticPrime package consists of the following things:</p>
	<p><i>AquaticPrime Developer</i> - This is the application which you use manage keys for your products, generate license files, and get license information.<br />
<i>AquaticPrime</i> - This is the licensing library itself, in both framework and static library form, suitable for use in any Cocoa-based application.<br />
<i>Sources</i> - This contains the source to AquaticPrime, in addition to an implementation that uses only CoreFoundation (suitable for use in Carbon applications), as well as an implementation of AquaticPrime in PHP that can be used to generate license files on a webserver.</p>
	<p>I&#8217;ve also added a <a href="http://www.aquaticmac.com/guide/">developer guide</a> that describes how to use the system.  Have comments?  Leave them here or <a href="mailto:lucas@aquaticmac.com" rel="external">email me</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/9/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Guide Update: Blacklisting A License File</title>
		<link>http://aquaticmac.com/blog/archives/10</link>
		<comments>http://aquaticmac.com/blog/archives/10#comments</comments>
		<pubDate>Wed, 21 Sep 2005 13:59:36 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/10</guid>
		<description><![CDATA[	I&#8217;ve just added a section to the AquaticPrime Developer Guide describing how to blacklist a license file that has been leaked or stolen.  This allows your application using AquaticPrime to reject these licenses and maintain integrity.

]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve just added a section to the <a href="http://www.aquaticmac.com/guide/">AquaticPrime Developer Guide</a> describing how to <a href="http://www.aquaticmac.com/guide/validate.php#blacklist">blacklist a license file</a> that has been leaked or stolen.  This allows your application using AquaticPrime to reject these licenses and maintain integrity.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/10/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>AquaticPrime 1.0.1 Released</title>
		<link>http://aquaticmac.com/blog/archives/11</link>
		<comments>http://aquaticmac.com/blog/archives/11#comments</comments>
		<pubDate>Thu, 01 Dec 2005 01:40:04 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/11</guid>
		<description><![CDATA[	I&#8217;ve just released version 1.0.1 of AquaticPrime, which fixes several bugs present across the Cocoa, Carbon, and PHP implementations.  You can grab it here.

]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve just released version 1.0.1 of AquaticPrime, which fixes several bugs present across the Cocoa, Carbon, and PHP implementations.  You can grab it <a href="http://aquaticmac.com/aquaticprime.dmg">here</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/11/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>AquaticPrime goes Universal</title>
		<link>http://aquaticmac.com/blog/archives/12</link>
		<comments>http://aquaticmac.com/blog/archives/12#comments</comments>
		<pubDate>Mon, 27 Feb 2006 22:47:34 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/12</guid>
		<description><![CDATA[	I&#8217;ve just updated AquaticPrime to version 1.0.3, which provides a Universal framework and library for AquaticPrime, the premier Mac open-source licensing system, and also adds native Intel support to the AquaticPrime Developer application.  This also fixes a couple of bugs in the PHP version that occurred with Unicode characters.
	Download it directly or take a [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve just updated AquaticPrime to version 1.0.3, which provides a Universal framework and library for AquaticPrime, the premier Mac open-source licensing system, and also adds native Intel support to the AquaticPrime Developer application.  This also fixes a couple of bugs in the PHP version that occurred with Unicode characters.</p>
	<p><a href="http://aquaticmac.com/aquaticprime.dmg">Download it directly</a> or take a look at the <a href="http://aquaticmac.com/changelog.php">changes</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/12/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>AquaticPrime 1.0.4</title>
		<link>http://aquaticmac.com/blog/archives/13</link>
		<comments>http://aquaticmac.com/blog/archives/13#comments</comments>
		<pubDate>Wed, 17 May 2006 20:42:02 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/13</guid>
		<description><![CDATA[	I&#8217;ve just released AquaticPrime 1.0.4.  The major new feature is support for license processing with eSellerate.  It also fixes a bug in the PHP implementation which could generate invalid licenses in certain scenarios.

]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve just released <a href="/">AquaticPrime 1.0.4</a>.  The major new feature is support for license processing with <a href="http://www.esellerate.net/">eSellerate</a>.  It also fixes a bug in the PHP implementation which could generate invalid licenses in certain scenarios.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/13/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>AquaticPrime Subversion Repository</title>
		<link>http://aquaticmac.com/blog/archives/14</link>
		<comments>http://aquaticmac.com/blog/archives/14#comments</comments>
		<pubDate>Mon, 19 Feb 2007 06:49:54 +0000</pubDate>
		<dc:creator>Lucas</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://aquaticmac.com/blog/archives/14</guid>
		<description><![CDATA[	Chris Forsythe and Evan Schoenberg of the Adium project were nice enough to set up a repository on Google Code for AquaticPrime.  You can check it out at the project page.
	There are some interesting things in the repository that are not yet in a release, like a new Python implementation written by Koen Bok.
]]></description>
			<content:encoded><![CDATA[	<p>Chris Forsythe and Evan Schoenberg of the Adium project were nice enough to set up a repository on Google Code for AquaticPrime.  You can check it out at the <a href="http://maccode.googlecode.com/svn/trunk/Utilities/AquaticPrime/" rel="external">project page</a>.</p>
	<p>There are some interesting things in the repository that are not yet in a release, like a new Python implementation written by <a href="http://www.koen.nu/" rel="external">Koen Bok</a>.</p>
]]></content:encoded>
			<wfw:commentRSS>http://aquaticmac.com/blog/archives/14/feed/</wfw:commentRSS>
	</item>
	</channel>
</rss>
