[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-01-08 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 Petr Lautrbach changed: What|Removed |Added CC||plaut...@redhat.com --- Comment #1 from

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-01-08 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 --- Comment #2 from kolafl...@kolahilft.de --- Just tested the current version from Git. SHA256 is working great! Gives me the SHA256 or MD5 fingerprint: ssh-keygen -lv -E SHA256 -f id_rsa.pub ssh-keygen -lv -E MD5 -f id_rsa.pub But: SSH clien

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-01-08 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 --- Comment #3 from Petr Lautrbach --- You can put "FingerprintHash=md5" into your ssh config files (/etc/ssh/ssh_config, ~/.ssh/config) or use '-o FingerprintHash=md5' directly on the command line. $ ssh localhost The authenticity of host 'local

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-01-08 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 Damien Miller changed: What|Removed |Added CC||d...@mindrot.org --- Comment #4 from Dami

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-01-08 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 --- Comment #5 from Petr Lautrbach --- ~/.ssh/config: host * FingerprintHash=md5 $ ssh -o FingerprintHash=sha512 localhost The authenticity of host 'localhost (127.0.0.1)' can't be established. ECDSA key fingerprint is MD5:da:24:43:0b:2e:c1:3

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-01-08 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 --- Comment #6 from Petr Lautrbach --- works for me with this patch: --- a/readconf.c +++ b/readconf.c @@ -1464,6 +1464,7 @@ parse_int: goto parse_string; case oFingerprintHash: + intptr = &options->fingerpr

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-01-08 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 Damien Miller changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-05-02 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 Max Polk changed: What|Removed |Added Resolution|FIXED |--- Status|RESOLVED

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-05-21 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 Damien Miller changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2015-05-22 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 --- Comment #10 from kolafl...@kolahilft.de --- Guess the -E option should be documented in the manual page. Szenario: You run a server, to which people from your company/team should connect to. The other people use different SSH versions (some s

[Bug 2332] Show more secure fingerprints than MD5 (e.g. SHA256) in ssh and ssh-keygen

2016-08-01 Thread bugzilla-daemon
https://bugzilla.mindrot.org/show_bug.cgi?id=2332 Damien Miller changed: What|Removed |Added Status|RESOLVED|CLOSED --- Comment #11 from Damien Miller