Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ajout de la doc yubi pour wsl #104

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/yubikey.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,33 @@

- [GnuPG](https://www.gnupg.org/) version 2.0.2 or later.
- Sur OSX `brew install gnupg`
- Sur Windows [gpg4win](https://gpg4win.org/download.html)
- [Yubikey Manager CLI](https://developers.yubico.com/yubikey-manager/)
- Sur OSX `brew install ykman`

### WSL
L'accès aux interfaces USB depuis WSL étant restreintes, une solution de contournement est d'utiliser l'instance Windows de gpg depuis WSL.

- Si vos clés sont stockés coté WSL, alors il est nécessaire d'exporter vos clés pour les importer coté Windows. Voir [ce gist](https://gist.github.com/Killeroid/6361944d0694e474fb94cc42a3b119d1) pour l'export et l'import de clé
> [!IMPORTANT]
> Veillez à bien éxécuter l'export depuis WSL (ubuntu), et l'import depuis powershell.
> Le chemin d'import depuis windows étant ``\\wsl.localhost\Ubuntu\root\...``


- Identifiez où se trouve l'exéctuable coté windows (via Powershell)
```console
> where.exe gpg
C:\Program Files (x86)\GnuPG\bin\gpg.exe
```
- Dans WSL, créez l'alias suivant dans le fichier de votre choix ( ``.bash_aliases``, ``.zshrc``, ...)
```bash
alias gpg='/mnt/c/Program\ Files\ \(x86\)/GnuPG/bin/gpg.exe'
```





## Clef GPG

Dans cette partie nous verrons comment configurer Yubikey pour stocker vos clefs GPG.
Expand Down