|
|
8 роки тому | |
|---|---|---|
| build | 8 роки тому | |
| src | 8 роки тому | |
| test | 9 роки тому | |
| .gitattributes | 9 роки тому | |
| .gitignore | 9 роки тому | |
| LICENSE | 9 роки тому | |
| README.md | 8 роки тому | |
| appveyor.yml | 8 роки тому |
SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.
##Introduction This project was inspired by Sharp.SSH library which was ported from java and it seems like was not supported for quite some time. This library is a complete rewrite, without any third party dependencies, using parallelism to achieve the best performance possible.
##Features
##Key Exchange Method
SSH.NET supports the following key exchange methods:
##Message Authentication Code
SSH.NET supports the following MAC algorithms:
##Framework Support SSH.NET supports the following target frameworks:
##Usage Establish an SFTP connection using both password and public-key authentication:
var connectionInfo = new ConnectionInfo("sftp.foo.com",
"guest",
new PasswordAuthenticationMethod("guest", "pwd"),
new PrivateKeyAuthenticationMethod("rsa.key"));
using (var client = new SftpClient(connectionInfo))
{
client.Connect();
}
##Building SSH.NET
| Software | net35 | net40 | netstandard1.3 | sl4 | sl5 | wp71 | wp8 | uap10.0 |
|---|---|---|---|---|---|---|---|---|
| Windows Phone SDK 8.0 | x | x | x | x | ||||
| Visual Studio 2012 Update 5 | x | x | x | x | x | x | ||
| Visual Studio 2015 Update 3 | x | x | x | x | x | |||
| Visual Studio 2017 | x | x |