]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/sslScripts/trustAll
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / clxutils / sslScripts / trustAll
1 #! /bin/csh -f
2 #
3 # make private key in specified keychain trusted by a list of apps we'll
4 # be running.
5 #
6 if ( $#argv < 1 ) then
7 echo Usage: trustAll keychain
8 exit(1)
9 endif
10 cd $LOCAL_BUILD_DIR
11 set d=`pwd`
12 trustApps $argv[1] $d/sslAlert $d/sslProt $d/sslSession $d/sslAuth $d/sslCipher
13
14