X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/80e2389990082500d76eb566d4946be3e786c3ef..d8f41ccd20de16f8ebe2ccc84d47bf1cb2b26bbb:/SecurityTests/clxutils/sslScripts/trustAll diff --git a/SecurityTests/clxutils/sslScripts/trustAll b/SecurityTests/clxutils/sslScripts/trustAll new file mode 100755 index 00000000..d28befc0 --- /dev/null +++ b/SecurityTests/clxutils/sslScripts/trustAll @@ -0,0 +1,14 @@ +#! /bin/csh -f +# +# make private key in specified keychain trusted by a list of apps we'll +# be running. +# +if ( $#argv < 1 ) then + echo Usage: trustAll keychain + exit(1) +endif +cd $LOCAL_BUILD_DIR +set d=`pwd` +trustApps $argv[1] $d/sslAlert $d/sslProt $d/sslSession $d/sslAuth $d/sslCipher + +