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 2c62c7251 Updated OWASP dependency plugin version add ee382b084 GH-455: ensure BaseCipher.update() fulfills the contract new de46a157c [releng] Bump Github actions to v4 The 1 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: .github/workflows/build.yml | 14 +- .github/workflows/master-build.yml | 6 +- CHANGES.md | 2 + .../apache/sshd/common/cipher/BaseCBCCipher.java | 55 +++++++ .../apache/sshd/common/cipher/BaseCTRCipher.java | 78 +++++++++ .../org/apache/sshd/common/cipher/BaseCipher.java | 57 ++++++- .../apache/sshd/common/cipher/BaseRC4Cipher.java | 5 + .../apache/sshd/common/cipher/BuiltinCiphers.java | 64 +++++++- .../java/org/apache/sshd/common/cipher/Cipher.java | 14 +- .../sshd/common/cipher/BaseCipherResetTest.java | 177 +++++++++++++++++++++ .../apache/sshd/common/cipher/BaseCipherTest.java | 8 + .../sshd/common/cipher/OpenSshCipherTest.java | 156 ++++++++++++++++++ sshd-mina/pom.xml | 1 + sshd-netty/pom.xml | 1 + 14 files changed, 615 insertions(+), 23 deletions(-) create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/cipher/BaseCBCCipher.java create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/cipher/BaseCTRCipher.java create mode 100644 sshd-common/src/test/java/org/apache/sshd/common/cipher/BaseCipherResetTest.java create mode 100644 sshd-core/src/test/java/org/apache/sshd/common/cipher/OpenSshCipherTest.java