This is an automated email from the ASF dual-hosted git repository. lgoldstein pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git.
from 119c4e0 Removed some extraneous spaces new 8b2b132 Updated supported RFCs reference documentation new c000c6c Fixed some javadoc comments new 27405a9 Minor code re-write regarding 1st packet after KEX initial guess new e846902 Define AbstractClientSession#checkKeys as throws IOException - same as method override new 9e17380 [SSHD-955] Provide configurable control over auto-detected password prompt in client-side 'UserAuthKeyboardInteractive' implementation new b43e9df [SSHD-955] Provide SSH command line option to control user authentication mechanisms in client/server The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: CHANGES.md | 3 + README.md | 1 + docs/client-setup.md | 6 ++ .../main/java/org/apache/sshd/cli/CliSupport.java | 31 +++++- .../sshd/cli/client/SshClientCliSupport.java | 114 +++++++++++++-------- .../org/apache/sshd/cli/client/SshClientMain.java | 12 ++- .../org/apache/sshd/cli/client/SshKeyScanMain.java | 3 +- .../sshd/cli/server/SshServerCliSupport.java | 4 +- .../org/apache/sshd/cli/server/SshServerMain.java | 8 +- .../apache/sshd/common/PropertyResolverUtils.java | 19 +++- .../sshd/common/auth/UserAuthFactoriesManager.java | 68 ++++++++++++ .../sshd/common/auth/UserAuthMethodFactory.java | 4 +- .../common/config/ConfigFileReaderSupport.java | 54 +++++++--- .../apache/sshd/common/kex/KexProposalOption.java | 25 +++-- .../sshd/common/signature/AbstractSignature.java | 2 +- .../apache/sshd/common/signature/Signature.java | 2 +- .../sshd/common/util/security/SecurityUtils.java | 5 +- .../sshd/client/ClientAuthenticationManager.java | 40 ++------ .../auth/keyboard/UserAuthKeyboardInteractive.java | 63 +++++++++--- .../sshd/client/auth/keyboard/UserInteraction.java | 62 ++++++++++- .../sshd/client/session/AbstractClientSession.java | 9 +- .../sshd/client/session/ClientUserAuthService.java | 6 +- .../common/session/helpers/AbstractSession.java | 6 +- .../sshd/server/ServerAuthenticationManager.java | 43 +++----- .../server/auth/keyboard/InteractiveChallenge.java | 5 +- .../server/config/SshServerConfigFileReader.java | 2 +- .../java/org/apache/sshd/client/ClientTest.java | 73 +++++++------ .../java/org/apache/sshd/server/ServerTest.java | 3 +- .../sshd/server/auth/WelcomeBannerPhaseTest.java | 8 +- .../apache/sshd/server/auth/WelcomeBannerTest.java | 13 ++- .../sshd/common/util/net/LdapNetworkConnector.java | 7 +- .../config/keys/loader/openpgp/PGPUtils.java | 5 +- 32 files changed, 486 insertions(+), 220 deletions(-) create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/auth/UserAuthFactoriesManager.java