Change-encryption-algorithm-type-[AES128-AES192-AES256-DES-TripleDES-Blowfish] - WeOnlyDo Software example code



All

wodCrypt (12)
wodSSH (10)
wodSFTP (23)
wodSSHServer (1)
wodSSHTunnel (11)
wodSSHpackage
wodSFTPdll

wodSSH.NET (10)
wodSFTP.NET (24)
wodFtpDLX.NET (22)
wodWebServer.NET (10)

wodAppUpdate (13)
wodHttpDLX (8)
wodFtpDLX (22)
wodTelnetDLX
wodFTPServer (3)
wodWebServer (10)
wodVPN
wodXMPP (13)
All ** [Visual Basic] ** [C#] ** [VB.NET] **

Change encryption algorithm type (Aes128, Aes192, Aes256, Des, TripleDes, Blowfish)
VB code
Dim wodSSH1 As wodSSHCom
Set wodSSH1 = New wodSSHCom

'Using Encryption Property encryption algorithm type can be changed
'for encrypted data transmission between wodSSH and the remote server.
wodSSH1.Encryption = encBLOWFISH

'Set server login, password and hostname.
wodSSH1.HostName = "your_hostname"
wodSSH1.Login = "your_login"
wodSSH1.Password = "your_password"
'Connect to server.
wodSSH1.Connect
VB.NET code
Dim wodSSH1 As WeOnlyDo.Client.SSH
wodSSH1 = New WeOnlyDo.Client.SSH

'Using Encryption Property encryption algorithm type can be changed
'for encrypted data transmission between wodSSH.NET and the remote server.
wodSSH1.Encryption = WeOnlyDo.Client.SSH.EncryptionMethods.Aes256

'Set server login, password and hostname.
wodSSH1.Hostname = "your_hostname"
wodSSH1.Login = "your_login"
wodSSH1.Password = "your_password"
'Connect to server.
wodSSH1.Connect()
C# code
WeOnlyDo.Client.SSH  wodSSH1;
wodSSH1 = new WeOnlyDo.Client.SSH();

//Using Encryption Property encryption algorithm type can be changed
//for encrypted data transmission between wodSSH.NET and the remote server.
wodSSH1.Encryption = WeOnlyDo.Client.SSH.EncryptionMethods.TripleDes;

//Set server login, password and hostname.
wodSSH1.Hostname = "your_hostname";
wodSSH1.Login = "your_login";
wodSSH1.Password = "your_password";
//Connect to server.
wodSSH1.Connect();