On Mon, Mar 25, 2013 at 11:24 PM, silvioprog <span dir="ltr"><<a href="mailto:silvioprog@gmail.com" target="_blank">silvioprog@gmail.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr"><div class="gmail_extra"><div>Nice.</div><div><br></div><div>But there situations that the user does not have the OpenSSL lib.</div><div><br></div><div>The routines I sent does not depend on external libs.<br>


</div><div class="im"><div><br></div>-- <br>Silvio Clécio<br>My public projects - <a href="http://github.com/silvioprog" target="_blank">github.com/silvioprog</a>
</div></div></div>
</blockquote></div><br><div>It's possible to build static lib files for Win 32 and 64 on Linux. </div><div><br></div><div>...  download the sources from here <a href="http://www.openssl.org/source/">http://www.openssl.org/source/</a> then ... </div>
<div><br></div><div>sudo apt-get install mingw-w64</div><div><div><br></div><div>... goto the OpenSSL source directory and ...</div><div><br></div><div>CROSS_COMPILE="i686-w64-mingw32-" ./Configure mingw64 no-asm shared</div>
<div>make</div><div>CROSS_COMPILE="x86_64-w64-mingw32-" ./Configure mingw64 no-asm shared</div><div>make</div></div><div><br></div><div>... and copy libcrypto.a and libssl.a to a FPC lib path ...</div><div><br></div>
<div>Now you can compile for Win 32/64 using OpenSSL static lib files.</div><div><br></div>