RE: smime system call problem> #!/usr/bin/perl -w
>
> system("openssl smime -encrypt -in message.txt -out crypto.txt cert.pem");
I suggest that this is NOT the way to do this. Its better to open it
something like this:
our $Debug=1;
#DONT FORGET THE PIPE AT THE END!
open (SSL,"openssl smime -encrypt -in message.txt -out crypto.txt cert.pem
|") || die "Failed to execute OpenSSL\n";
while (<SSL>) {
print if $Debug;
#do OPENSSL response parsing
}
close SSL;
This didn't help either - still a core dump using the browser - ssh is ok
______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]