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 98b89bd Fixed typo in CHANGES.md new 7fefebb [SSHD-1246] Moved user HOME directory detection and usage to PathUtils new 8ea60df [SSHD-1246] Added SshKeyDumpMain utility The 2 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 | 7 +- docs/client-setup.md | 53 ++- sshd-cli/pom.xml | 13 +- .../java/org/apache/sshd/cli/SshKeyDumpMain.java | 408 +++++++++++++++++++++ .../sshd/client/config/hosts/HostConfigEntry.java | 32 +- .../sshd/common/config/keys/IdentityUtils.java | 20 - .../sshd/common/config/keys/PublicKeyEntry.java | 8 +- .../org/apache/sshd/common/util/io/PathUtils.java | 73 ++++ .../OpenSSHKeyPairResourceParserTestSupport.java | 3 +- .../apache/sshd/common/util/io/PathUtilsTest.java | 77 ++++ .../GenerateOpenSSHClientCertificateTest.java | 6 +- ...GenerateOpenSshClientCertificateOracleTest.java | 4 +- .../certificates/OpenSSHCertificateParserTest.java | 2 +- .../ClientOpenSSHCertificatesTest.java | 13 +- .../common/config/keys/AuthorizedKeyEntryTest.java | 2 +- .../FileHostKeyCertificateProviderTest.java | 3 +- .../common/signature/OpenSSHCertificateTest.java | 5 +- .../java/org/apache/sshd/openpgp/PGPUtils.java | 4 +- 18 files changed, 656 insertions(+), 77 deletions(-) create mode 100644 sshd-cli/src/test/java/org/apache/sshd/cli/SshKeyDumpMain.java create mode 100644 sshd-common/src/test/java/org/apache/sshd/common/util/io/PathUtilsTest.java