Documentation
Open Source Release Policy
Export Compliance
Using BouncyCastle
Installing the API
Enabling Logging
Per-Connection Logging
Third Party Dependencies
Generating SSH Keys
Using BouncyCastle
Using SSH Public Keys in Java
Supporting ED25519/Curve25519
Supporting Compression
Integrating Licensing into Maven Builds
Creating an SSH Client
Public Key Authentication
Keyboard Interactive Authentication
Public Key Authentication with sshagent
Executing Single Commands
Executing Commands within a Shell
Transferring Files
Connecting through Proxies
Display the Authentication Banner
Using the SFTP Client
Port Forwarding
Working Examples
Configuring Listening Interfaces
Configuring Host Keys
Password Authentication
Public Key Authentication
Challenge-Response Authentication
Configuring Port Forwarding
Configuring SFTP
Supporting SCP
Implementing your own File System
Creating an Interactive Terminal
Proxy Protocol Support
Zlib compression is now supported in the core after being refactored to remove its dependency on jzlib. This document, therefore, only applies to version < 3.1.0.
Supporting ZLIB compression
The Maverick Synergy Java SSH API has a module that enables ZLIB compression support.
The core API has zero third-party dependencies, and as support for ZLIB requires a third-party library, you must include this additional module to support compression.
<dependency>
<groupId>com.sshtools</groupId>
<artifactId>maverick-zip</artifactId>
<version>3.0.0</version>
</dependency>
Code language: HTML, XML (xml)
You do not need to do anything other than include the module or jar file in your classpath. When included, the API will automatically configure zlib and zlib@openssh.org algorithms.
Please also review our third-party dependencies documentation for more information on the dependencies this module requires.
What third-party dependencies does the Maverick Synergy API have