PascalCoin, for some reason I can't run it when compiled in lazarus on my win7-32
It says "Cannot load libeay64.dll", which is not surprising since I'm on 32bit OS.
I attach screenshot from IDE and screenshots when application is compiled and executed.



Anyway, I couldn't make it working without altering sources (Sorry).
in unit "UOpenSSL.pas" on line 40 you have "SSL_C_LIB : AnsiString = 'libeay64.dll';"
For some reason assuming that if compiler is FPC, a 64bit version should be used.
I changed it to "SSL_C_LIB : AnsiString = 'libeay32.dll';"
Now it works!
Shouldn't we make a compiler directive to identify a platform and use an appropriate library? Something like
{$ifdef CPU32}
SSL_C_LIB : AnsiString = 'libeay32.dll';
{$ENDIF}
{$ifdef CPU64}
SSL_C_LIB : AnsiString = 'libeay64.dll';
{$ENDIF}
Thank you for your work! Wish you and your coin a huge success!