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 0cc4e60 Updated CHANGES.md new cea78ef Fixed some code format and definition issues new cc7a1a4 [SSHD-989] Moved code that parses PKCS8 encoding to dedicated class new 95b1635 [SSHD-989] Implement ECDSA public key recovery from PKCS#8 encoded data new 1b2e34a [SSHD-989] Added verification that parsed/recovered key pairs can be used for signing new 4c19ef0 Tighter timeout limit on wait time for SFTP server response to client message The 5 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 | 4 +- README.md | 2 + .../keys/impl/OpenSSHCertificateDecoder.java | 6 +- .../loader/pem/DSSPEMResourceKeyPairParser.java | 8 +- .../loader/pem/ECDSAPEMResourceKeyPairParser.java | 92 +++++++++--- .../keys/loader/pem/PEMResourceParserUtils.java | 4 + .../loader/pem/PKCS8PEMResourceKeyPairParser.java | 93 ++++-------- .../keys/loader/pem/PKCS8PrivateKeyInfo.java | 165 +++++++++++++++++++++ .../loader/pem/RSAPEMResourceKeyPairParser.java | 8 +- .../signature/AbstractSecurityKeySignature.java | 6 +- .../sshd/common/signature/AbstractSignature.java | 23 ++- .../apache/sshd/common/signature/SignatureDSA.java | 2 +- .../sshd/common/signature/SignatureECDSA.java | 2 +- .../apache/sshd/common/signature/SignatureRSA.java | 22 ++- .../org/apache/sshd/common/util/GenericUtils.java | 7 +- .../common/util/closeable/SequentialCloseable.java | 4 +- .../common/util/closeable/SimpleCloseable.java | 5 + .../security/eddsa/EdDSASecurityProviderUtils.java | 7 +- .../util/security/eddsa/SignatureEd25519.java | 3 +- .../OpenSSHKeyPairResourceParserDecodingTest.java | 2 + .../OpenSSHKeyPairResourceParserPasswordTest.java | 1 + .../pem/PKCS8PEMResourceKeyPairParserTest.java | 42 ++++++ .../common/signature/SignatureRSASHA1Test.java | 3 +- .../common/util/security/SecurityUtilsTest.java | 10 +- .../sshd/util/test/CommonTestSupportUtils.java | 86 ++++++++++- .../apache/sshd/util/test/JUnitTestSupport.java | 9 ++ .../subsystem/sftp/impl/DefaultSftpClient.java | 15 +- .../client/subsystem/sftp/SftpTransferTest.java | 50 ++++--- 28 files changed, 524 insertions(+), 157 deletions(-) create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/config/keys/loader/pem/PKCS8PrivateKeyInfo.java