tomaswolf edited a comment on pull request #119: URL: https://github.com/apache/mina-sshd/pull/119#issuecomment-835869718
What about verbose client-side output? Check what ssh -vvv tells you about the signature algorithm being used on the client side, and compare against the debug logging from the Apache sshd client. I think the error "key type does not match" comes from [ssh-rsa.c](https://github.com/openssh/openssh-portable/blob/48f54b9/ssh-rsa.c#L270). `sigtype` should be one of ssh-rsa, rsa-sha2-256, or rsa-sha2-512 at that point. My suspicion is that the client by mistake sends "[email protected]" instead. If the client's debug log shows something like "send SSH_MSG_USERAUTH_REQUEST request ... [email protected] - fingerprint ..." then this is the problem. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
