#!/bin/csh
/afs/net/project/pemdist/@sys/submit
echo ""
echo "Your Public Key has now been submitted for processing."
echo "Your PRIVATE Key is sitting unencrypted in /tmp, we will now"
echo "run the 'crypt' command to encrypt it and place the result"
echo "in the file '.pemprivatekey' in your home directory."
echo "The 'crypt' command will prompt you for a password, DO NOT"
echo 'FORGET IT'
crypt </tmp/PrivateKEY.out >~/.pemprivatekey
rm /tmp/PrivateKEY.out
exit 0

