> From: "Mike Gagnon" <[EMAIL PROTECTED]> > Date: Sun, 08 May 2005 21:27:31 +0000 > > I'm zeroing in on my problem. > > Encryption / decryption WORKS in DEBUG in the Visual C++ IDE BUT NOT when run > from windows explorer. > > Also doesn't work at all in release mode. I tried turning off optimization > and that didn't help. > > Any ideas / suggestions?
This is not specific to openSSL, but I find it's generally one of: - there's a buffer overflow affecting a local variable, and debug mode puts extra variables on the stack that are affected instead of the important one. - there's an uninitialized variable that debug mode helpfully (?) is initializing for you. Try this link as well: http://www.codeproject.com/debug/releasemode.asp -- Ken Goldman [EMAIL PROTECTED] 914-784-7646 ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]
