This is an automated email from the ASF dual-hosted git repository. twolf pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git.
from bf4000c [SSHD-1193] Provide a more user-friendly text in case disconnecting due to timeout(s) new 1c5987d [SSHD-1191] Abstract session: correct rekey block count limit new 8a031d1 Re-instantiate support for chacha20-poly1...@openssh.com new 21485ec Mention chacha20-poly1305 in CHANGES and README 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 | 2 +- .../apache/sshd/common/cipher/BaseGCMCipher.java | 2 +- .../apache/sshd/common/cipher/BuiltinCiphers.java | 7 + .../apache/sshd/common/cipher/ChaCha20Cipher.java | 279 +++++++++++++++++++++ .../org/apache/sshd/common/mac/Poly1305Mac.java | 270 ++++++++++++++++++++ .../sshd/common/cipher/ChaCha20CipherTest.java | 59 +++++ .../java/org/apache/sshd/common/BaseBuilder.java | 1 + .../common/session/helpers/AbstractSession.java | 58 ++++- 9 files changed, 667 insertions(+), 12 deletions(-) create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/cipher/ChaCha20Cipher.java create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/mac/Poly1305Mac.java create mode 100644 sshd-common/src/test/java/org/apache/sshd/common/cipher/ChaCha20CipherTest.java