]>
git.saurik.com Git - apple/security.git/blob - keychains/makecerts
157320d6269e45f6bf83da2210a31b7ff07a24f4
3 # Use to gather certificates into specified keychain.
7 print "usage: makecerts keychainfile cert...\n";
14 foreach $argnum (1 .. $numFiles) {
15 $thisCert = $ARGV[$argnum];
16 my @cmd = ("certtool", "i", $thisCert, "k=$dbname", "d");
17 do { push @cmd, "c"; $created = 1; } unless $created;
23 print "$count certificates placed into $dbname\n";