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
15