Adds command to show SSH key fingerprint (#935)

Adds an ssh-keygen command to show the fingerprint of an SSH key in the
same format that is used by Github to list SSH keys that it knows about.
This commit is contained in:
Rob Young 2016-07-26 15:16:42 +01:00 committed by Leandro Ostera
parent d3f5b7f457
commit 44527a82a8

View File

@ -22,6 +22,10 @@
`ssh-keygen -l -F {{remote_host}}`
- Retrieve the fingerprint of a key in MD5 Hex:
`ssh-keygen -l -E md5 -f ~/.ssh/{{filename}}`
- Change the password of a key:
`ssh-keygen -p -f ~/.ssh/{{filename}}`