https://bugzilla.mindrot.org/show_bug.cgi?id=2729
Damien Miller <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #4 from Damien Miller <[email protected]> --- In future, please attach debug traces using the attachments feature. This is why your connection succeeds: debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none chacha20-poly1305 and AES-GCM are AEAD ciphers that effectively include their own MAC. As such, the MAC you specified is ignored when they are selected. If you specify a plain confidentiality cipher (e.g. -c aes128-ctr) then your connection will fail as you expect. -- You are receiving this mail because: You are watching someone on the CC list of the bug. You are watching the assignee of the bug. _______________________________________________ openssh-bugs mailing list [email protected] https://lists.mindrot.org/mailman/listinfo/openssh-bugs
