Home | History | Annotate | Download | only in apps

Lines Matching refs:CA

3 # CA - wrapper around ca to make it easier to use ... basically ca requires
7 # CA -newca ... will setup the right stuff
8 # CA -newreq[-nodes] ... will generate a certificate request
9 # CA -sign ... will sign the generated request and output
16 # 12-Jan-96 tjh Added more things ... including CA -signcert which
30 # 27-Apr-98 snh Translation into perl, fix existing CA bug.
51 $CA="$openssl ca $SSLEAY_CONFIG";
67 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
102 print "CA certificate filename (or enter to create)\n";
107 # ask user for existing CA certificate
113 print "Making CA certificate ...\n";
116 system ("$CA -create_serial " .
134 system ("$CA -policy policy_anything -infiles newreq.pem");
137 system ("$CA -policy policy_anything -out newcert.pem " .
142 system ("$CA -policy policy_anything -out newcert.pem " .
145 print "Signed CA certificate is in newcert.pem\n";
149 system ("$CA -policy policy_anything -out newcert.pem " .
167 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";