> I want to use your latest OpenSSL version for our project.  The
> environment is Windows and Visual C++ 5.0  Do you have any sample programs
> where
> you utilizes OpenSSL in Visual C++? If not could you please send me the
info
> (header files, executable libraries, etc) so the I can use the OpenSSL to
> test with
> other users. 
> 
> I am novice regarding OpenSSL and I will really appreciate if you can send
> me a sample program or detail information to utilize and test OpenSSL. 

Assuming you start developing with debug-code I recommend the following
settings:

* In Visual Studio under Tools - Options - Directories add your
  openssl/inc32 directory to the include-files and your
  openssl/out32.dbg directory to the linker-files

* In your project include the openssl header-files as
  #include <openssl/asn1.h> (for example)

* Under Project - Settings - Link add 'libeay32.lib' to
  Object/Library modules and the option '/nodefaultlib:"libcd"'
  to the Project Options.

If you later generate a release or want to use the libraries
that make use of the openssl DLL's you must change the directory
for the linker files accordingly.

I hope the above Options can be reached the same way in VC 5.0 since I'm
using 6.0.
You can try the sample programs from openssl/demos.

Good Luck

Robert
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to