SSHKeychain is a GUI front-end for ssh-agent and ssh-add on Mac OS X. Features include:
Can remove all keys from the agent after sleep or after a minimum period of
sleep (especially useful for notebooks).
Can remove all keys from the agent when a Screensaver is detected.
Can remove all keys from the agent when the Apple keychain is locked.
Can add keys to the agent whenever the Apple keychain is unlocked.
Can add keys to the agent whenever ssh is trying to use the agent with no
keys on the chain.
Can display itself in the StatusBar, Dock, or both.
You can store the passphrases for your private keys in the Apple Keychain.
Can add the necessary variables to the global environment
(~/.MacOSX/environment.plist),
so you can use SSHKeychain with all your programs (Terminal, Project
Builder, etc).
You can also edit the global environment from within the Preferences.
You can lock/unlock the Apple keychain from a menu item.
Works seamless with the commandline tools. (i.e. tracks activity coming
from the commandline tools, and updates it's UI.)
Works with requests coming over the network (through AgentForwarding).
PSYCHOS I'd like SSHKeychain to not display itself at all in the dock or menu bar. This worked fine in 0.8.1 by setting it to Dock-only and setting LSUIElement to 1 in the Info.plist. However, in 0.8.2, LSUIElement reverts to 0 and the dock icon shows up anyways. Locking the Info.plist causes the app to quit after a few seconds.
Does anyone know how I might fully hide SSHKeychain without mucking with the source?
(I have to add, this is one of the most useful pieces of MacOS freeware out there!) (Version 0.8.2)
PSYCHOS Turns out I posted rather hastily. Checked my ~/src directory, and indeed I had modified the source for 0.8.1, to force it to set LSUIElement to 1 no matter what. Will do the same to 0.8.2. (Version 0.8.2)
0
Sep 14 2007
SJK Since updating to 0.8.2 I've noticed this console message (with typo):
2007-09-05 19:24:40.548 SSHKeychain[20474] Buggy password in keycahin workaround
No errors when running Keychain First Aid in Keychain Access. (Version 0.8.2)
SJK 0.8.2 installed and runs fine for me, though the installer package has a hidden .gdb_history file that was dropped in /Applications.
Related side-topic annoyance: Among other things, the often-too-dumb Apple Installer begs for the ability to let experienced users deselect unwanted files they want to exclude during installation, like that unnecessary .gdb_history the SSHKeychain developer accidentally included in the package. Yes, I know about Pacifist though Installer needn't obsolete it simply to give a bit more control over developer mistakes. (Version 0.8.2)
0
Aug 23 2007
MARTIN HAIRER Brilliant little app, a real time-saver! (Version 0.8.1)
ERIK.SWANSON I too am experiencing system freezes whenever I try to launch SSHKeychaon 0.7.1 after installing Security Update 2006-003 on my MacBook Pro.
Installing the "SMC Firmware Update" has not had any effect on however SSHKeychain manages to freeze up the system. (Version 0.7.1)
0
Apr 4 2006
CBX322 Put this into ~/.bash_profile if using the bash shell in Tiger:
SSHAGENT=/usr/bin/ssh-agent
SSHAGENTARGS="-s"
if [ -z "$SSH_AUTH_SOCK" -a -x "$SSHAGENT" ]; then
eval `$SSHAGENT $SSHAGENTARGS`
trap "kill $SSH_AGENT_PID" 0
fi
Then start a new shell and type:
ssh-add
You are prompted for the password of your ssh-keys.
0.7 crashes on startup. 0.7.1 displays blank panes on preferences. Are you doing something silly like using webkit for the preferences? (Version 0.7.1)