You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to suggest adding support for custom SSHAuthenticationMethod. Currently, I need to provide multiple authentication methods for one SSH connection, such as auto-attempting all available keys or implementing two-factor login. It would be great if SSHClient.connect could use NIOSSHClientUserAuthenticationDelegate as a generic parameter so that users can implement their own authentication logic.
The text was updated successfully, but these errors were encountered:
Great news! I have tested the branch, and it works perfectly. However, I did encounter an issue when testing 2-factor login, as swift-nio-ssh currently does not support keyboard-interactive authentication. If I have the time, I will attempt to make a pull request to address this issue. Thank you for your efforts in developing this feature!
I would like to suggest adding support for custom
SSHAuthenticationMethod
. Currently, I need to provide multiple authentication methods for one SSH connection, such as auto-attempting all available keys or implementing two-factor login. It would be great ifSSHClient.connect
could useNIOSSHClientUserAuthenticationDelegate
as a generic parameter so that users can implement their own authentication logic.The text was updated successfully, but these errors were encountered: