Skip to content

Latest commit

 

History

History
76 lines (49 loc) · 2.21 KB

File metadata and controls

76 lines (49 loc) · 2.21 KB

Authenticating SSH with PIV and PKCS#11 (client)

One of the coolest features of the Yubikey is authenticating SSH sessions via PKCS#11. The private key is stored on the Yubikey and whenever it is accessed, Yubikey can require a touch action.

Besides the common remote login, all connections that use SSH, such as remote git server (e.g. GitHub), may trigger this behavior if desired. This is a protection on the client side to prevent unauthorized SSH private key access.

Note that only RSA keys are supported when using this method.

  1. Create a 2048-bit RSA key pair:
❯ yubico-piv-tool -s 9a -a generate -k --pin-policy=once --touch-policy=always --algorithm=RSA2048 -o public.pem

Enter Yubikey's Management key.

  1. Create a self-signed certificate (or, alternatively, a certificate signing request):
❯ yubico-piv-tool -a verify-pin -a selfsign-certificate -s 9a -S '/CN=ssh/' --valid-days=365 -i public.pem -o cert.pem

Enter PIN then touch the Yubikey.

Alternatively replace selfsign-certificate by request-certificate and send the resulting .csr file for internal CA certification.

  1. Import the (self-)signed certificate:
❯ yubico-piv-tool -k -a import-certificate -s 9a -i cert.pem

Enter Yubikey's Management key.

  1. Export the public key stored in the Yubikey in the correct format for OpenSSH:
❯ ssh-keygen -D /usr/local/opt/opensc/lib/pkcs11/opensc-pkcs11.so -e

Alternatively, you can use the generated public key before you delete it:

❯ ssh-keygen -i -m PKCS8 -f public.pem

You can now share this public key for SSH authentication (e.g ~/.ssh/authorized_keys).

  1. Check slot 9a status (optional):
❯ yubico-piv-tool -a status
  1. Add the SSH key provided via PKCS#11 to the local ssh-agent:
❯ ssh-add -s /usr/local/opt/opensc/lib/pkcs11/opensc-pkcs11.so

Enter the Yubikey PIN when it asks for the passphrase.

  1. Confirm the key has been added:
❯ ssh-add -L
  1. Alternatively, selectively add the PKCS11Provider to ~/.ssh/config:
Host github.com
  PKCS11Provider /usr/local/opt/opensc/lib/pkcs11/opensc-pkcs11.so
  Port 22
  User foobar