1
0
mirror of https://github.com/shazow/ssh-chat.git synced 2025-04-17 09:22:21 +03:00

sshd: Add SHA256 prefix to pubkey fingerprints ()

Fixes 
This commit is contained in:
Jesse Shapiro 2016-10-22 09:49:26 -04:00 committed by Andrey Petrov
parent 55c1def24d
commit 7781d5b135

@ -68,5 +68,5 @@ func MakeNoAuth() *ssh.ServerConfig {
// See: https://anongit.mindrot.org/openssh.git/commit/?id=56d1c83cdd1ac
func Fingerprint(k ssh.PublicKey) string {
hash := sha256.Sum256(k.Marshal())
return base64.StdEncoding.EncodeToString(hash[:])
return "SHA256:" + base64.StdEncoding.EncodeToString(hash[:])
}