<?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>x2on.de</title>
	<atom:link href="http://www.x2on.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.x2on.de</link>
	<description>Tutorials for Mac OS X, Linux, Windows, iPhone and more...</description>
	<lastBuildDate>Tue, 13 Jul 2010 17:44:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Build Git from source on Ubuntu</title>
		<link>http://www.x2on.de/2010/07/13/build-git-from-source-on-ubuntu/</link>
		<comments>http://www.x2on.de/2010/07/13/build-git-from-source-on-ubuntu/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 17:44:15 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=578</guid>
		<description><![CDATA[Snippet for building Git from source on Ubuntu Linux: sudo apt-get install git-core build-essential autoconf sudo apt-get install libdigest-sha1-perl liberror-perl sudo apt-get build-dep git-core git clone git://git.kernel.org/pub/scm/git/git.git cd git make configure ./configure make sudo apt-get purge git-core sudo make install]]></description>
			<content:encoded><![CDATA[<p>Snippet for building Git from source on Ubuntu Linux:<br />
<span id="more-578"></span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> git-core build-essential <span style="color: #c20cb9; font-weight: bold;">autoconf</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libdigest-sha1-perl liberror-perl
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> build-dep git-core
git clone git:<span style="color: #000000; font-weight: bold;">//</span>git.kernel.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>scm<span style="color: #000000; font-weight: bold;">/</span>git<span style="color: #000000; font-weight: bold;">/</span>git.git
<span style="color: #7a0874; font-weight: bold;">cd</span> git
<span style="color: #c20cb9; font-weight: bold;">make</span> configure
.<span style="color: #000000; font-weight: bold;">/</span>configure
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> purge git-core
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/07/13/build-git-from-source-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: iPhone App with compiled OpenSSL 1.0.0a Library</title>
		<link>http://www.x2on.de/2010/07/13/tutorial-iphone-app-with-compiled-openssl-1-0-0a-library/</link>
		<comments>http://www.x2on.de/2010/07/13/tutorial-iphone-app-with-compiled-openssl-1-0-0a-library/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 17:22:25 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[TLS]]></category>
		<category><![CDATA[X.509]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=598</guid>
		<description><![CDATA[This is a tutorial for using self-compiled builds of the OpenSSL-library on the iPhone. You can build apps with XCode and the official SDK from Apple with this. I also made a small example-app for using the libraries with XCode and the iPhone/iPhone-Simulator. You can also download the precompiled OpenSSL-library (1.0.0a). This tutorial works with [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tutorial for using self-compiled builds of  the OpenSSL-library on the iPhone. You can build apps with XCode and the official SDK from Apple with this. I also made a small example-app for using the libraries with XCode and the iPhone/iPhone-Simulator. You can also download the precompiled OpenSSL-library (1.0.0a).<br />
<span id="more-598"></span></p>
<p>This tutorial works with OpenSSL 1.0.0a and Xcode 3.2.3 with iOS 4.</p>
<p>You can find the tutorial for OpenSSL 0.9.8 at <a href="http://www.x2on.de/2010/02/01/tutorial-iphone-app-with-compiled-openssl-library/">http://www.x2on.de/2010/02/01/tutorial-iphone-app-with-compiled-openssl-library/</a></p>
<p>You can get the Source of the example app with compiled OpenSSL at <a href="http://github.com/x2on/OpenSSL-for-iPhone" target="_blank">http://github.com/x2on/OpenSSL-for-iPhone</a></p>
<h3>Create OpenSSL Libary:</h3>
<p>Download OpenSSL Sourcecode<br />
Change in crypto/ui/ui_openssl.c</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">static</span> <span style="color: #993333;">volatile</span> sig_atomic_t intr_signal<span style="color: #339933;">;</span></pre></div></div>

<p>to</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">static</span> <span style="color: #993333;">volatile</span> <span style="color: #993333;">int</span> intr_signal<span style="color: #339933;">;</span></pre></div></div>

<p>for preventing building error</p>
<h4>Build OpenSSL for i368 iPhoneSimulator:</h4>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> ssllibs
<span style="color: #7a0874; font-weight: bold;">cd</span> openssl-1.0.0a
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> openssl_armv6 openssl_armv7 openssl_i386
.<span style="color: #000000; font-weight: bold;">/</span>configure BSD-generic32 <span style="color: #660033;">--openssldir</span>=<span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;/</span>openssl-1.0.0a<span style="color: #000000; font-weight: bold;">/</span>openssl_i386</pre></div></div>

<h5>Edit Makefile:</h5>
<p>Change CC = cc to:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">CC</span>= <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">gcc</span> <span style="color: #660033;">-arch</span> i386</pre></div></div>

<p>Add as first item to CFLAG:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">-isysroot</span> <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>SDKs<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator4.0.sdk</pre></div></div>

<h5>Build it:</h5>

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

<p>Your libcrypto.a and libssl.a are in the folder openssl_i368/lib</p>
<h4>Build OpenSSL for armv6 iOS:</h4>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> openssl_i386 ..<span style="color: #000000; font-weight: bold;">/</span>ssllibs
<span style="color: #c20cb9; font-weight: bold;">make</span> clean
.<span style="color: #000000; font-weight: bold;">/</span>configure BSD-generic32 <span style="color: #660033;">--openssldir</span>=<span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;/</span>openssl-1.0.0a<span style="color: #000000; font-weight: bold;">/</span>openssl_armv6</pre></div></div>

<h5>Edit Makefile:</h5>
<p>Change CC = cc to:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">CC</span>= <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">gcc</span> <span style="color: #660033;">-arch</span> armv6</pre></div></div>

<p>Add as first item to CFLAG:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">-isysroot</span> <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>SDKs<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS4.0.sdk</pre></div></div>

<h5>Build it:</h5>

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

<p>Your libcrypto.a and libssl.a are in the folder openssl_armv6/lib</p>
<h4>Build OpenSSL for armv7 iOS:</h4>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> openssl_armv6 ..<span style="color: #000000; font-weight: bold;">/</span>ssllibs
<span style="color: #c20cb9; font-weight: bold;">make</span> clean
.<span style="color: #000000; font-weight: bold;">/</span>configure BSD-generic32 <span style="color: #660033;">--openssldir</span>=<span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;/</span>openssl-1.0.0a<span style="color: #000000; font-weight: bold;">/</span>openssl_armv7</pre></div></div>

<h5>Edit Makefile:</h5>
<p>Change CC = cc to:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">CC</span>= <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">gcc</span> <span style="color: #660033;">-arch</span> armv7</pre></div></div>

<p>Add as first item to CFLAG:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">-isysroot</span> <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>SDKs<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS4.0.sdk</pre></div></div>

<h5>Build it:</h5>

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

<p>Your libcrypto.a and libssl.a are in the folder openssl_armv7/lib</p>
<p>Create universal libs:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-r</span> openssl_armv7<span style="color: #000000; font-weight: bold;">/</span>include ..<span style="color: #000000; font-weight: bold;">/</span>ssllibs<span style="color: #000000; font-weight: bold;">/</span>
lipo <span style="color: #660033;">-create</span> ..<span style="color: #000000; font-weight: bold;">/</span>ssllibs<span style="color: #000000; font-weight: bold;">/</span>openssl_i386<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libcrypto.a ..<span style="color: #000000; font-weight: bold;">/</span>ssllibs<span style="color: #000000; font-weight: bold;">/</span>openssl_armv6<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libcrypto.a openssl_armv7<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libcrypto.a <span style="color: #660033;">-output</span> ..<span style="color: #000000; font-weight: bold;">/</span>sslibs<span style="color: #000000; font-weight: bold;">/</span>libcrypto.a
llipo <span style="color: #660033;">-create</span> ..<span style="color: #000000; font-weight: bold;">/</span>ssllibs<span style="color: #000000; font-weight: bold;">/</span>openssl_i386<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libssl.a ..<span style="color: #000000; font-weight: bold;">/</span>ssllibs<span style="color: #000000; font-weight: bold;">/</span>openssl_armv6<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libssl.a openssl_armv7<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libssl.a <span style="color: #660033;">-output</span> ..<span style="color: #000000; font-weight: bold;">/</span>sslibs<span style="color: #000000; font-weight: bold;">/</span>libssl.a</pre></div></div>

<h4>Edit your iPhone-XCode project:</h4>
<p>Copy the &#8220;include&#8221; folder from OpenSSL into your project-folder<br />
Copy the libcrypto.a and libssl.a files into your project-folder<br />
Drag the libcrypto.a and libssl.a files into your XCode Framework Folder-Tree<br />
Open the Build-Info from your &#8220;Target&#8221; (Righclick on Target &#8211; Get Info)<br />
Change <em>Library Search Paths</em> to</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$<span style="color: #7a0874; font-weight: bold;">&#40;</span>inherited<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(SRCROOT)</span>&quot;</span></pre></div></div>

<p>Change <em>User Header Search Paths</em> to <em>include</em><br />
Activate <em>Always Search User Paths</em></p>
<p><strong>Enjoy OpenSSL on the iPhone!</strong></p>
<p>I have made an iOS 3.2/4.0 XCode Project with OpenSSL 1.0.0a libaries. The examples uses the MD5-algorithm to calculate an md5 hash from an UITextfield.</p>
<p><strong>Download:</strong> <a href="http://github.com/x2on/OpenSSL-for-iPhone" target="_blank">http://github.com/x2on/OpenSSL-for-iPhone</a></p>
<p><strong>Disclaimer: Use this at your own risk.</strong></p>
<p><strong>Links: </strong></p>
<ul>
<li><a href="http://www.therareair.com/2009/01/01/tutorial-how-to-compile-openssl-for-the-iphone/" target="_blank">http://www.therareair.com/2009/01/01/tutorial-how-to-compile-openssl-for-the-iphone/</a></li>
<li><a href="http://www.openssl.org/" target="_blank">http://www.openssl.org/</a></li>
<li><a href="http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html" target="_blank">http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/07/13/tutorial-iphone-app-with-compiled-openssl-1-0-0a-library/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Update: OpenSSL 1.0.0a Libraries for iPhone iPod Touch iPad with iOS4</title>
		<link>http://www.x2on.de/2010/06/30/update-openssl-1-0-0a-libraries-for-iphone-ipod-touch-ipad-with-ios4/</link>
		<comments>http://www.x2on.de/2010/06/30/update-openssl-1-0-0a-libraries-for-iphone-ipod-touch-ipad-with-ios4/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 19:01:01 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[TLS]]></category>
		<category><![CDATA[X.509]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=600</guid>
		<description><![CDATA[OpenSSL 1.0.0a is released and i updated the OpenSSL-Libraries for iPhone/iPod Touch. Now the Library is build with the iOS4.0 base SDK and Xcode 3.2.3. You can use it now with the iPad too. You can get it at http://github.com/x2on/OpenSSL-for-iPhone]]></description>
			<content:encoded><![CDATA[<p>OpenSSL 1.0.0a is released and i updated the OpenSSL-Libraries for iPhone/iPod Touch. Now the Library is build with the iOS4.0 base SDK and Xcode 3.2.3. You can use it now with the iPad too. You can get it at http://github.com/x2on/OpenSSL-for-iPhone</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/06/30/update-openssl-1-0-0a-libraries-for-iphone-ipod-touch-ipad-with-ios4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update: OpenSSL 0.9.8o Libraries for iPhone iPod Touch iPad</title>
		<link>http://www.x2on.de/2010/06/10/update-openssl-0-9-8o-libaries-for-iphone-ipod-touch-ipad/</link>
		<comments>http://www.x2on.de/2010/06/10/update-openssl-0-9-8o-libaries-for-iphone-ipod-touch-ipad/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 17:05:03 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[TLS]]></category>
		<category><![CDATA[X.509]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=585</guid>
		<description><![CDATA[OpenSSL 0.9.8o is released and i updated the OpenSSL-Libraries for iPhone/iPod Touch. I added an extra version for the iPad (compiled with the iPhoneOS 3.2 SDK). You can get it at http://github.com/x2on/OpenSSL-for-iPhone]]></description>
			<content:encoded><![CDATA[<p>OpenSSL 0.9.8o is released and i updated the OpenSSL-Libraries for iPhone/iPod Touch. I added an extra version for the iPad (compiled with the iPhoneOS 3.2 SDK). You can get it at <a href="http://github.com/x2on/OpenSSL-for-iPhone" target="_blank">http://github.com/x2on/OpenSSL-for-iPhone</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/06/10/update-openssl-0-9-8o-libaries-for-iphone-ipod-touch-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update: OpenSSL 0.9.8n Libaries for iPhone/iPod Touch</title>
		<link>http://www.x2on.de/2010/03/31/update-openssl-0-9-8n-libaries-for-iphoneipod-touch/</link>
		<comments>http://www.x2on.de/2010/03/31/update-openssl-0-9-8n-libaries-for-iphoneipod-touch/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 12:42:51 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[TLS]]></category>
		<category><![CDATA[X.509]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=574</guid>
		<description><![CDATA[OpenSSL 0.9.8n is released and i updated the OpenSSL-Libaries for iPhone/iPod Touch. You can get it at http://github.com/x2on/OpenSSL-for-iPhone]]></description>
			<content:encoded><![CDATA[<p>OpenSSL 0.9.8n is released and i updated the OpenSSL-Libaries for iPhone/iPod Touch. You can get it at <a href="http://github.com/x2on/OpenSSL-for-iPhone" target="_blank">http://github.com/x2on/OpenSSL-for-iPhone</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/03/31/update-openssl-0-9-8n-libaries-for-iphoneipod-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SuperTux 0.3.3 for Mac OS X Download</title>
		<link>http://www.x2on.de/2010/03/09/supertux-0-3-3-for-mac-os-x-download/</link>
		<comments>http://www.x2on.de/2010/03/09/supertux-0-3-3-for-mac-os-x-download/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 22:16:19 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[SuperTux]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=569</guid>
		<description><![CDATA[I build the Jump’n&#8217;Run-Game SuperTux 0.3.3 for Mac OS X! Have fun&#8230;! Download (Intel – 57,6MB): SuperTux_0.3.3.dmg]]></description>
			<content:encoded><![CDATA[<p>I build the Jump’n&#8217;Run-Game SuperTux 0.3.3 for Mac OS X! Have fun&#8230;!</p>
<p><strong>Download (Intel – 57,6MB):</strong> <a href="http://www.x2on.de/wp-content/uploads/2010/03/SuperTux_0.3.3.dmg">SuperTux_0.3.3.dmg</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/03/09/supertux-0-3-3-for-mac-os-x-download/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Design &#8211; english content</title>
		<link>http://www.x2on.de/2010/03/08/new-design-english-content/</link>
		<comments>http://www.x2on.de/2010/03/08/new-design-english-content/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:50:45 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=554</guid>
		<description><![CDATA[x2on.de got a new design &#8211; i hope all works fine. I also switched the blog language to english, because most visitors are non german speaking people.]]></description>
			<content:encoded><![CDATA[<p>x2on.de got a new design &#8211; i hope all works fine.</p>
<p>I also switched the blog language to english, because most visitors are non german speaking people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/03/08/new-design-english-content/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Update: OpenSSL 0.9.8m Libaries for iPhone/iPod Touch</title>
		<link>http://www.x2on.de/2010/02/28/update-openssl-0-9-8m-libaries-for-iphoneipod-touch/</link>
		<comments>http://www.x2on.de/2010/02/28/update-openssl-0-9-8m-libaries-for-iphoneipod-touch/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 19:09:10 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[TLS]]></category>
		<category><![CDATA[X.509]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=505</guid>
		<description><![CDATA[OpenSSL 0.9.8m is released and i updated the OpenSSL-Libaries for iPhone/iPod Touch. You can get it at http://github.com/x2on/OpenSSL-for-iPhone]]></description>
			<content:encoded><![CDATA[<p>OpenSSL 0.9.8m is released and i updated the OpenSSL-Libaries for iPhone/iPod Touch. You can get it at <a href="http://github.com/x2on/OpenSSL-for-iPhone" target="_blank">http://github.com/x2on/OpenSSL-for-iPhone</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/02/28/update-openssl-0-9-8m-libaries-for-iphoneipod-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: iPhone App with compiled OpenSSL Library</title>
		<link>http://www.x2on.de/2010/02/01/tutorial-iphone-app-with-compiled-openssl-library/</link>
		<comments>http://www.x2on.de/2010/02/01/tutorial-iphone-app-with-compiled-openssl-library/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 17:42:23 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=480</guid>
		<description><![CDATA[This is a tutorial for using self-compiled builds of  the OpenSSL-library on the iPhone. You can build apps with XCode and the official SDK from Apple with this. I also made a small example-app for using the libraries with XCode and the iPhone/iPhone-Simulator. You can also download the precompiled OpenSSL-library (1.0.0a). This tutorial works with [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tutorial for using self-compiled builds of  the OpenSSL-library on the iPhone. You can build apps with XCode and the official SDK from Apple with this. I also made a small example-app for using the libraries with XCode and the iPhone/iPhone-Simulator. You can also download the precompiled OpenSSL-library (1.0.0a).<span id="more-480"></span></p>
<p>This tutorial works with OpenSSL 0.9.8o and Xcode 3.2 with iPhoneOS 3.1.3.<br />
An updated version of this tutorial for OpenSSL 1.0 and Xcode 3.2.3 with iOS 4 is here:</p>
<p>http://www.x2on.de/2010/07/13/tutorial-iphone-app-with-compiled-openssl-1-0-0a-library/</p>
<p>UPDATE 2010-07-13: New tutorial for OpenSSL 1.0.0a and iOS4<br />
UPDATE 2010-06-30: I have updated OpenSSL to 1.0.0a with iOS 4.0 as base SDK<br />
UPDATE 2010-06-10: I have updated OpenSSL to 0.9.8o + iPad Version<br />
UPDATE 2010-03-31: I have updated OpenSSL to 0.9.8n<br />
UPDATE 2010-02-26: I have updated OpenSSL to 0.9.8m</p>
<p>You can get the Source of the example app with compiled OpenSSL at <a href="http://github.com/x2on/OpenSSL-for-iPhone" target="_blank">http://github.com/x2on/OpenSSL-for-iPhone</a></p>
<p><strong>Create OpenSSL Libary:</strong></p>
<ul>
<li>Download OpenSSL Sourcecode</li>
<li>Build OpenSSL for i368 iPhoneSimulator:
<ul>
<li>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> openssl-0.9.8o
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> openssl_arm
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> openssl_i386
.<span style="color: #000000; font-weight: bold;">/</span>config <span style="color: #660033;">--openssldir</span>=<span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;/</span>openssl-0.9.8o<span style="color: #000000; font-weight: bold;">/</span>openssl_i386</pre></div></div>

</li>
<li>Edit Makefile:
<ul>
<li>Change CC = cc to:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">CC</span>= <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>gcc-<span style="color: #000000;">4.0</span></pre></div></div>

</li>
<li>Add as first item to CFLAG:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">-isysroot</span> <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>SDKs<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator3.1.2.sdk</pre></div></div>

</li>
</ul>
</li>
<li>Change in crypto/ui/ui_openssl.c

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">static</span> <span style="color: #993333;">volatile</span> sig_atomic_t intr_signal<span style="color: #339933;">;</span></pre></div></div>

<p>to</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">static</span> <span style="color: #993333;">volatile</span> <span style="color: #993333;">int</span> intr_signal<span style="color: #339933;">;</span></pre></div></div>

<p>for preventing building error</li>
<li>Build it:

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

</li>
<li>Your libcrypto.a and libssl.a are in the folder openssl_i368/lib</li>
<li>Rename the two files to libcrypto_i386.a and libssl_i386.a</li>
</ul>
</li>
<li>Build OpenSSL for arm iPhoneOS:
<ul>
<li>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> openssl_i386 openssl_i386_lib
<span style="color: #c20cb9; font-weight: bold;">make</span> clean</pre></div></div>

<li>Edit Makefile:
<ul>
<li>Search and replace openssl_i386 with openssl_arm</li>
<li>Change -arch i386 in CFLAG to:<br />
-arch armv6</li>
<li>Change

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">CC</span>=  <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>gcc-<span style="color: #000000;">4.0</span></pre></div></div>

<p>to</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">CC</span>=  <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>gcc-<span style="color: #000000;">4.0</span></pre></div></div>

</li>
<li>Change

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">-isysroot</span>  <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>SDKs<span style="color: #000000; font-weight: bold;">/</span>iPhoneSimulator3.1.2.sdk</pre></div></div>

<p>to</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">-isysroot</span>  <span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>Platforms<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS.platform<span style="color: #000000; font-weight: bold;">/</span>Developer<span style="color: #000000; font-weight: bold;">/</span>SDKs<span style="color: #000000; font-weight: bold;">/</span>iPhoneOS3.1.2.sdk</pre></div></div>

</li>
</ul>
</li>
<li>Build it:

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

</li>
<li>Your libcrypto.a and libssl.a are in the folder openssl_arm/lib</li>
<li>Rename the two files to libcrypto_arm.a and libssl_arm.a</li>
</ul>
</li>
</ul>
<p><strong>Edit your iPhone-XCode project:</strong></p>
<ul>
<li>Copy the &#8220;include&#8221; folder from OpenSSL into your project-folder</li>
<li>Copy the libcrypto_*.a and libss_*.a files into your project-folder</li>
<li>Drag the libcrypto_*.a and libss_*.a files into your XCode Framework Folder-Tree</li>
<li>Open the Build-Info from your &#8220;Target&#8221; (Righclick on Target &#8211; Get Info)</li>
<li>Change <em>Library Search Paths</em> to

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$<span style="color: #7a0874; font-weight: bold;">&#40;</span>inherited<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(SRCROOT)</span>&quot;</span></pre></div></div>

</li>
<li>Change <em>User Header Search Paths</em> to <em>include</em></li>
<li>Activate <em>Always Search User Paths</em></li>
</ul>
<p><strong>Enjoy OpenSSL on the iPhone!</strong></p>
<p>I have made an iPhone OS 3.1.2 XCode Project with OpenSSL 0.9.8o libaries. The examples uses the MD5-algorithm to calculate an md5 hash from an UITextfield.</p>
<p><strong>Download:</strong> <a href="http://github.com/x2on/OpenSSL-for-iPhone" target="_blank">http://github.com/x2on/OpenSSL-for-iPhone</a></p>
<p><strong>Disclaimer: Use this at your own risk.</strong></p>
<p><strong>Links: </strong></p>
<ul>
<li><a href="http://www.therareair.com/2009/01/01/tutorial-how-to-compile-openssl-for-the-iphone/" target="_blank">http://www.therareair.com/2009/01/01/tutorial-how-to-compile-openssl-for-the-iphone/</a></li>
<li><a href="http://www.openssl.org/" target="_blank">http://www.openssl.org/</a></li>
<li><a href="http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html" target="_blank">http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/02/01/tutorial-iphone-app-with-compiled-openssl-library/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>SuperTux 0.3.2-SVN r6288 Download</title>
		<link>http://www.x2on.de/2010/01/31/supertux-0-3-2-svn-r6288-download/</link>
		<comments>http://www.x2on.de/2010/01/31/supertux-0-3-2-svn-r6288-download/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 08:53:24 +0000</pubDate>
		<dc:creator>Felix Schulze</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[SuperTux]]></category>

		<guid isPermaLink="false">http://www.x2on.de/?p=457</guid>
		<description><![CDATA[Um sich die aktuelle SVN-Version des 2D-Jump&#8217;n'Run-Spiel Supertux unter Mac OS X selbst zu erstellen, habe ich gestern eine Anleitung veröffentlicht. Für alle denen das zu Aufwendig ist, habe ich nun eine fertige Version aus der aktuellen SVN-Entwicklerversion erstellt. Viel Spaß damit. Download (Intel &#8211; 62,1MB): SuperTux_0.3.2-SVN_r6288.dmg.zip Anmerkung: Da es sich hierbei um eine Version [...]]]></description>
			<content:encoded><![CDATA[<p>Um sich die aktuelle SVN-Version des 2D-Jump&#8217;n'Run-Spiel Supertux unter Mac OS X selbst zu erstellen, habe ich gestern eine Anleitung veröffentlicht. Für alle denen das zu Aufwendig ist, habe ich nun eine fertige Version aus der aktuellen SVN-Entwicklerversion erstellt. Viel Spaß damit.</p>
<p><strong>Download</strong> (Intel &#8211; 62,1MB): <a href="http://www.x2on.de/wp-content/uploads/SuperTux_0.3.2-SVN_r6288.dmg.zip">SuperTux_0.3.2-SVN_r6288.dmg.zip</a></p>
<p>Anmerkung: Da es sich hierbei um eine Version aus dem SVN-Repository handelt, können Fehler enthalten sein.</p>
<p><span id="more-457"></span></p>
<p><a href="http://www.x2on.de/wp-content/uploads/2010/02/supertux.jpg"><img class="alignnone size-thumbnail wp-image-472" title="SuperTux Menü" src="http://www.x2on.de/wp-content/uploads/2010/02/supertux-150x150.jpg" alt="" width="150" height="112" /></a> <a href="http://www.x2on.de/wp-content/uploads/2010/02/supertux2.jpg"><img class="alignnone size-thumbnail wp-image-473" title="SuperTux Level" src="http://www.x2on.de/wp-content/uploads/2010/02/supertux2-150x150.jpg" alt="" width="150" height="112" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.x2on.de/2010/01/31/supertux-0-3-2-svn-r6288-download/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
