Hello,
I have seen that when the SSH client and server connection is established a list of supported encryption algorithms (ciphers) on both sides is available.
By default it looks that the first algorithm supported on both sides is selected for encryption, is there a way to force it in some way ?
I have blowfish-cbc, cast128-cbc, aes128-cbc, 3des-cbc supported and would like to compare performances.
Thanks for your replies.
Forcing algorithm used for encryption
Re: Forcing algorithm used for encryption
You can choose any cipher algorithm for using by setting the TScSSHClient.CiphersClient and CiphersServer properties, like this:
Code: Select all
ScSSHClient1.CiphersClient.AsString := 'blowfish-cbc';
ScSSHClient1.CiphersServer.AsString := 'blowfish-cbc';
Re: Forcing algorithm used for encryption
The blowfish-cbc encryption algorithm is the fastest :)RDTelecom wrote:I have blowfish-cbc, cast128-cbc, aes128-cbc, 3des-cbc supported and would like to compare performances.
Re: Forcing algorithm used for encryption
If any other questions come up, please contact me.