<?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"
	>

<channel>
	<title>DEAN LEE:/DEV/BLOG &#187; openssl</title>
	<atom:link href="http://www.deanlee.cn/tag/openssl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.deanlee.cn</link>
	<description>mount /dev/brain &#124;&#124; tail -f /var/log/thoughts &#62;&#62; /pub/www</description>
	<pubDate>Fri, 30 Dec 2011 13:27:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Moved OpenSSL for windows to google code</title>
		<link>http://www.deanlee.cn/programming/moved-openssl-for-windows-to-google-code/</link>
		<comments>http://www.deanlee.cn/programming/moved-openssl-for-windows-to-google-code/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 12:14:03 +0000</pubDate>
		<dc:creator>Dean Lee</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[openssl]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.deanlee.cn/programming/moved-openssl-for-windows-to-google-code-2/</guid>
		<description><![CDATA[Due to the bandwidth limitation and the lack of issue tracking system,I have moved OpenSSL for windows to google code: http://code.google.com/p/openssl-for-windows/
if you have any questions/issues,please submit an issue at http://code.google.com/p/openssl-for-windows/issues/list
]]></description>
			<content:encoded><![CDATA[<p>Due to the bandwidth limitation and the lack of issue tracking system,I have moved <a target="_blank" href="http://www.deanlee.cn/programming/openssl-for-windows/">OpenSSL for windows</a> to google code: <a href="http://code.google.com/p/openssl-for-windows/" title="http://code.google.com/p/openssl-for-windows/" class="external">http://code.google.com/p/openssl-for-windows/</a></p>
<p>if you have any questions/issues,please submit an issue at <a href="http://code.google.com/p/openssl-for-windows/issues/list" title="http://code.google.com/p/openssl-for-windows/issues/list" class="external">http://code.google.com/p/openssl-for-windows/issues/list</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deanlee.cn/programming/moved-openssl-for-windows-to-google-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compiler warning C4022 when building OpenSSL 0.9.8e On Windows</title>
		<link>http://www.deanlee.cn/windows/compiler-warning-c4022-when-building-openssl-098e-on-windows/</link>
		<comments>http://www.deanlee.cn/windows/compiler-warning-c4022-when-building-openssl-098e-on-windows/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 10:46:15 +0000</pubDate>
		<dc:creator>Dean Lee</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[c4022]]></category>

		<category><![CDATA[compile]]></category>

		<category><![CDATA[openssl]]></category>

		<guid isPermaLink="false">http://www.deanlee.cn/windows/compile-errorc4022-when-trying-to-build-openssl-098e-on-windows/</guid>
		<description><![CDATA[I got the following compiler error&#160;when building OpenSSL-0.9.8e in Windows environments with Visual studio 2005:
.\apps\enc.c(380) : error C2220: warning treated as error - no &#8216;object&#8217; file generated
.\apps\enc.c(380) : warning C4022: &#8216;BIO_ctrl&#8217; : pointer mismatch for actual parameter 4
Here is the quick fix to solve this compile error:
Open file .\apps\enc.c,Go to line 380:
if (BIO_read_filename(in,inf ]]></description>
			<content:encoded><![CDATA[<p>I got the following compiler error&nbsp;when building <a href="http://www.openssl.org/" target="_blank">OpenSSL-0.9.8e</a> in Windows environments with Visual studio 2005:</p>
<p>.\apps\enc.c(380) : error C2220: warning treated as error - no &#8216;object&#8217; file generated<br />
.\apps\enc.c(380) : warning C4022: &#8216;BIO_ctrl&#8217; : pointer mismatch for actual parameter 4</p>
<p>Here is the quick fix to solve this compile error:</p>
<p>Open file .\apps\enc.c,Go to line 380:</p>
<pre class="prettyprint">if (BIO_read_filename(in,inf <= 0))
{
	perror(inf);
	goto end;
}</pre>
<p>&nbsp;Change it to</p>
<pre class="prettyprint">if (BIO_read_filename(in,(char*)(inf <= 0)))
{
	perror(inf);
	goto end;
}</pre>
<p>you can download the compiled binary <a href="http://www.deanlee.cn/programming/openssl-for-windows/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deanlee.cn/windows/compiler-warning-c4022-when-building-openssl-098e-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Download OpenSSL for windows</title>
		<link>http://www.deanlee.cn/programming/openssl-for-windows/</link>
		<comments>http://www.deanlee.cn/programming/openssl-for-windows/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 08:25:04 +0000</pubDate>
		<dc:creator>Dean Lee</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[openssl]]></category>

		<category><![CDATA[project]]></category>

		<category><![CDATA[win32]]></category>

		<category><![CDATA[win64]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://deanlee.cn/2006/10/03/openssl-for-windows/</guid>
		<description><![CDATA[openssl-for-windows,host on google code,is an clean and lightweight OpenSSL library for windows(both 32bit and x64 version).
all versions are compiled in the assembly language routines with Microsoft Visual Studio 2005 and Microsoft MASM as “Multithreaded(/MT)”,you can using it with any version of MSVC.
Download openssl for windows
files included in this library are listed below:    [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/openssl-for-windows/" target="_blank">openssl-for-windows</a>,host on google code,is an clean and lightweight OpenSSL library for windows(both 32bit and x64 version).</p>
<p>all versions are compiled in the assembly language routines with Microsoft Visual Studio 2005 and Microsoft MASM as “Multithreaded(/MT)”,you can using it with any version of MSVC.</p>
<p class="download"><a href="http://code.google.com/p/openssl-for-windows/downloads/list" title="Download openssl for windows">Download openssl for windows</a></p>
<p>files included in this library are listed below:    <br /><img height="69" alt="" src="http://www.deanlee.cn/wp-content/uploads/2006/10/WindowsLiveWriter/OpenSSLforwindows_E6D7/ssldir3.gif" width="97" /></p>
<p><font color="#008000">|bin (libeay32.dll, ssleay32.dll,openssl.exe)      <br />|include       <br />|&#8211; &#8212; openssl&#160; (openssl head files)       <br />|lib (</font><font color="#008000">libeay32.lib,ssleay32.lib)</font></p>
<p>if you find it useful, a time saver,or even just mildly interesting,then my effort was worth it.    <br />if you have any suggestions on how to improve it, I&#8217;d love to hear it.</p>
<p>link to this page: <a title="http://www.deanlee.cn/programming/openssl-for-windows/" href="http://www.deanlee.cn/programming/openssl-for-windows/">http://www.deanlee.cn/programming/openssl-for-windows/</a></p>
<p>Enjoy:)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deanlee.cn/programming/openssl-for-windows/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

