Clés SSH

From Alliance Doc
Revision as of 20:29, 3 October 2016 by Diane27 (talk | contribs) (Created page with "SSH utilise la [https://fr.wikipedia.org/wiki/Cryptographie_asym%C3%A9trique cryptographie asymétrique] aussi appelée chiffrement à clé publique et privée. Dans ce mode d...")
Jump to navigation Jump to search
Other languages:

SSH utilise la cryptographie asymétrique aussi appelée chiffrement à clé publique et privée. Dans ce mode de cryptage, une clé privée reste secrète et l'autre clé est publique Tous peuvent utiliser la clé publique pour encoder un message; cependant, seul le propriétaire de la clé privée peut utiliser la clé privée pour le décodage. Il est possible ainsi de valider l'identité d'un utilisateur; par exemple, si Alice possède une clé privée, Robert peut utiliser la clé publique d'Alice pour lui envoyer un message codé. Seule la personne qui possède la clé privée (Alice) pourra interpréter le message.

To use keys for authentication, we:

  • Generate a key pair (Private and Public)
  • Copy the public key to remote systems we wish to be able to log into, and mark it as an authorized key for that system
  • Ensure permissions are set properly
  • Test.

When generating a key pair it is highly recommended that you supply a passphrase. If a passphrase is not supplied during key generation then anyone who can access your private key can login to any machines which use the matching public key for authentication.

The process of generating an ssh key pair will depend on the operating system you have. For generating a key pair in windows using Putty or MobaXterm see Generating ssh keys in Windows, for generating key pairs in linux/Mac's/Windows Cygwin see Using ssh keys in Linux.