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 20d4e44 [SSHD-1221] Support key constraints when adding a key to the SSH agent add 5c0c8ab [SSHD-704] Add support for RFC 8731 add 84a35b0 [SSHD-704] Fix DH KEX for curve25519 and enable curve25519 and curve448 new dfa109b [SSHD-704] Update CHANGES and README: RFC 8731 support 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: CHANGES.md | 1 + README.md | 4 +- docs/dependencies.md | 7 +- .../sshd/common/util/buffer/BufferUtils.java | 2 +- .../java/org/apache/sshd/client/kex/DHGClient.java | 6 +- .../java/org/apache/sshd/common/BaseBuilder.java | 3 + .../org/apache/sshd/common/kex/AbstractDH.java | 11 ++ .../apache/sshd/common/kex/BuiltinDHFactories.java | 51 ++++++ .../main/java/org/apache/sshd/common/kex/ECDH.java | 15 ++ .../apache/sshd/common/kex/MontgomeryCurve.java | 187 +++++++++++++++++++++ .../main/java/org/apache/sshd/common/kex/XDH.java | 84 +++++++++ .../java/org/apache/sshd/server/kex/DHGServer.java | 6 +- .../org/apache/sshd/DefaultSetupTestSupport.java | 3 +- 13 files changed, 370 insertions(+), 10 deletions(-) create mode 100644 sshd-core/src/main/java/org/apache/sshd/common/kex/MontgomeryCurve.java create mode 100644 sshd-core/src/main/java/org/apache/sshd/common/kex/XDH.java