some errors

2003-09-17 Thread [EMAIL PROTECTED]
Hello, I try to write some beginner sample codes. Compilation is ok in Visual C++ 6.0. But when I execute it, program raise error on function PEM_read_X509 at line 34. I don't know, where is problem... thanx, miso rsa.cpp Description: Binary data

Re: some errors

2003-09-17 Thread Aleix Conchillo Flaque
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hello, I try to write some beginner sample codes. Compilation is ok in Visual C++ 6.0. But when I execute it, program raise error on function PEM_read_X509 at line 34. I don't know, where is problem... you forgot to call

Re[2]: some errors

2003-09-17 Thread [EMAIL PROTECTED]
ACF you forgot to call OpenSSL_add_all_algorithms() at the beginning. hmmm, same error... :o( debugger says at this line error: Unhandled exception in rsa.exe (NTDLL.DLL): 0xC005: Access Violation. miso __ OpenSSL Project

Re: some errors

2003-09-17 Thread Christian Hohnstaedt
http://www.openssl.org/support/faq.html#PROG2 Regards Christian On Wed, Sep 17, 2003 at 02:58:53PM +0200, [EMAIL PROTECTED] wrote: ACF you forgot to call OpenSSL_add_all_algorithms() at the beginning. hmmm, same error... :o( debugger says at this line error: Unhandled exception in rsa.exe

Re[3]: some errors

2003-09-17 Thread [EMAIL PROTECTED]
hm hmmm, same error... :o( hm debugger says at this line error: Unhandled exception in rsa.exe (NTDLL.DLL): hm 0xC005: Access Violation. Oki, problemo is solved... I must set Multithreaded DLL in project settings... thanx for time Aliex, miso