SHA 256 Encryption using edtftpj-pro-4.6.2

476 Views Asked by At

Can you please indicate how can I enable SHA 256 encryption during SFTP connectivity. Currently I am using below code to connect to SFTP. Thanks in advance for your help.

        SSHFTPClient ftp = new SSHFTPClient();
        ftp.setRemoteHost("hostname");
        ftp.setRemotePort(23);
        ftp.setAuthentication("username", "password");
        ftp.getValidator().setHostValidationEnabled(false);
        ftp.connect();
1

There are 1 best solutions below

0
On

Try:

ftp.setAlgorithmEnabled(SSHFTPAlgorithm.MAC_SHA2_256, true);

See here for an example.