|
I have tried the Openssl-patched-pre-0.9.7.tar.gz
.
When I generate ca key using the RAServer operator
interface,it did not work.
but ,when I test the "openssl genrsa" command using a
command-line program ,it worked.
I do not know the reason until now.
platform:RedHat 7.1
package: OpenCA-SNAP-20011007
Following is the test program:
#*****************************************************************************************
#!/usr/bin/perl
$passwd="ca_key_password";
$ENV{'pwd'}= $passwd;
$command="/usr/local/ssl/bin/openssl genrsa -passout env:pwd
-des3 -out cakey.pem 2048";
open(FD,"$command") or print "there is an
error\n";
close(FD);
1;
#******************************************************************************************
|
