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