Skip to content

Instantly share code, notes, and snippets.

@marfillaster
Last active March 17, 2025 13:26
Show Gist options
  • Save marfillaster/22f44d53f4794c78c52ce745ab81ccdb to your computer and use it in GitHub Desktop.
Save marfillaster/22f44d53f4794c78c52ce745ab81ccdb to your computer and use it in GitHub Desktop.
yubikey ssh ykcs11 in osx

Generate key

brew install ykman yubico-piv-tool

# Generate key
ykman piv keys generate -aRSA2048 --pin-policy ONCE --touch-policy CACHED 9a public.pem


# Generate self signed key
ykman piv certificates generate -s "CN=yubi-1 ssh" -aSHA256  9a public.pem

# Generate openssh public key to be added in remote authorized_keys
yubico-piv-tool -a status -a verify-pin -a read-certificate -s 9a -KSSH

Use in agent

# ~/.zshrc
alias ssh-add-card='ssh-add -s /opt/homebrew/Cellar/yubico-piv-tool/2.7.1/lib/libykcs11.dylib'
eval $(cat $HOME/.ssh/ssh-agent.env 2>/dev/null)
if [[ ! -S "$SSH_AUTH_SOCK"  ]] || [[ "$SSH_AUTH_SOCK" =~ "Listeners" ]] || [[ ! "$(ps -p $SSH_AGENT_PID -o command 2>/dev/null | tail -n 1)" =~ "ssh-agent" ]]; then
  eval $(ssh-agent -P 'usr/lib*/*,/usr/local/lib*/*,/opt/homebrew/Cellar/yubico-piv-tool/2.7.1/lib*/*' | head -n 2 | tee $HOME/.ssh/ssh-agent.env)
  ssh-add-card
fi

More reading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment