MaJ du 22-10-2020

This commit is contained in:
2020-10-22 20:12:27 +02:00
parent 4485e7096d
commit 84b4e1a85d
22 changed files with 639 additions and 46 deletions

View File

@@ -185,6 +185,24 @@ $ ssh-keygen -l -f ~/.ssh/id_rsa.pub
#### Vérifier la passphrase:
```bash
# si la passphrase est correcte, renvoie la clé publique:
$ ssh-keygen -y
Enter file in which the key is (/Users/bruno/.ssh/id_rsa):
Enter passphrase:
ssh-rsa AAAAB3N....
# si la passphrase n'est pas correcte:
$ ssh-keygen -y
Enter file in which the key is (/Users/bruno/.ssh/id_rsa):
Enter passphrase:
Load key "/Users/bruno/.ssh/id_rsa": incorrect passphrase supplied to decrypt private key
```
#### Changer la passphrase:
```bash