Help,
I am having an unusual problem on my openbsd default openssl 0.9.5a install
that I can't work out.
If I am at the command line and run the following simple perl script,
crypto.txt exists, however, if I point my browser at the script crypto.txt
fails.
My permissions in the directory are 777 and it doesn't appear to matter who
owns the directory.
This also happens with one other openssl system call "pkcs" every other
openssl system calls works properly with the browser and the command line.
Any clues?
=================================
#!/usr/bin/perl -w
system("openssl smime -encrypt -in message.txt -out crypto.txt cert.pem");
print "Content-type: text/html\n\n";
if (-e "crypto.txt") {
print "crypto.txt exists\n";
}
else {
print "crypto.txt failed\n";
}
exit;
______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]