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 192ad6a [SSHD-1042] Added separate callbacks in SftpEventListener for reading vs. already read directory entries new 2c16f22 Add .gitignore placeholder in sshd-ldap/src/main/resources new 42b2e7d Moved some common CLI support utilities from SshClientCliSupport to CliSupport new 0ba8766 [SSHD-506] Add support for AES-GCM ciphers The 3 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 | 1 + README.md | 4 +- .../main/java/org/apache/sshd/cli/CliSupport.java | 116 ++++++++++++++++- .../sshd/cli/client/SshClientCliSupport.java | 107 ---------------- .../org/apache/sshd/cli/server/SshServerMain.java | 1 + .../org/apache/sshd/common/cipher/BaseCipher.java | 14 ++- .../apache/sshd/common/cipher/BaseGCMCipher.java | 103 ++++++++++++++++ .../apache/sshd/common/cipher/BaseRC4Cipher.java | 2 +- .../apache/sshd/common/cipher/BuiltinCiphers.java | 51 ++++++-- .../java/org/apache/sshd/common/cipher/Cipher.java | 37 ++++++ .../sshd/common/cipher/CipherInformation.java | 5 + .../org/apache/sshd/common/cipher/CipherNone.java | 10 ++ .../sshd/common/util/buffer/BufferUtils.java | 34 +++++ .../{ARCFOUR128Test.java => AES128GCMTest.java} | 14 +-- .../{ARCFOUR128Test.java => AES256GCMTest.java} | 14 +-- .../common/cipher/BaseAuthenticatedCipherTest.java | 70 +++++++++++ .../java/org/apache/sshd/common/BaseBuilder.java | 2 + .../sshd/common/config/SshConfigFileReader.java | 137 +++++++++++---------- .../common/session/helpers/AbstractSession.java | 99 ++++++++++----- .../sshd/common/cipher/BuiltinCiphersTest.java | 9 +- sshd-ldap/src/main/resources/.gitignore | 1 + 21 files changed, 593 insertions(+), 238 deletions(-) create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/cipher/BaseGCMCipher.java copy sshd-common/src/test/java/org/apache/sshd/common/cipher/{ARCFOUR128Test.java => AES128GCMTest.java} (73%) copy sshd-common/src/test/java/org/apache/sshd/common/cipher/{ARCFOUR128Test.java => AES256GCMTest.java} (73%) create mode 100644 sshd-common/src/test/java/org/apache/sshd/common/cipher/BaseAuthenticatedCipherTest.java create mode 100644 sshd-ldap/src/main/resources/.gitignore