mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-11 13:39:09 +00:00
Sync with new developments.
Move HMAC and key exchange method support to separate sections. Added hmac-sha2-512 and hmac-sha2-512-96 HMACs. Added Universal Windows Platform 10 (UAP10) as support target framework. Added VS 2015 Update 2 RC as requirement for building UAP10.
This commit is contained in:
@@ -11,15 +11,35 @@ This project was inspired by **Sharp.SSH** library which was ported from java an
|
||||
* Shell/Terminal implementation
|
||||
* Specify key file pass phrase
|
||||
* Use multiple key files to authenticate
|
||||
* Supports diffie-hellman-group-exchange-sha256, diffie-hellman-group-exchange-sha1, diffie-hellman-group14-sha1 and diffie-hellman-group1-sha1 key exchange methods
|
||||
* Supports 3des-cbc, aes128-cbc, aes192-cbc, aes256-cbc, aes128-ctr, aes192-ctr, aes256-ctr, blowfish-cbc, cast128-cbc, arcfour and twofish encryptions
|
||||
* Supports hmac-md5, hmac-sha1, hmac-ripemd160, hmac-sha2-256, hmac-sha2-256-96, hmac-md5-96 and hmac-sha1-96 hashing algorithms
|
||||
* Supports publickey, password and keyboard-interactive authentication methods
|
||||
* Supports RSA and DSA private key
|
||||
* Supports DES-EDE3-CBC, DES-EDE3-CFB, DES-CBC, AES-128-CBC, AES-192-CBC and AES-256-CBC algorithms for private key encryption
|
||||
* Supports two-factor or higher authentication
|
||||
* Supports SOCKS4, SOCKS5 and HTTP Proxy
|
||||
|
||||
#Key Exchange Method#
|
||||
|
||||
**SSH.NET** supports the following key exchange methods:
|
||||
* diffie-hellman-group-exchange-sha256
|
||||
* diffie-hellman-group-exchange-sha1
|
||||
* diffie-hellman-group14-sha1
|
||||
* diffie-hellman-group1-sha1
|
||||
|
||||
#Message Authentication Code#
|
||||
|
||||
**SSH.NET** supports the following MAC algorithms:
|
||||
* hmac-md5
|
||||
* hmac-md5-96
|
||||
* hmac-sha1
|
||||
* hmac-sha1-96
|
||||
* hmac-sha2-256
|
||||
* hmac-sha2-256-96
|
||||
* hmac-sha2-512
|
||||
* hmac-sha2-512-96
|
||||
* hmac-ripemd160
|
||||
* hmac-ripemd160@openssh.com
|
||||
|
||||
#Framework Support#
|
||||
* .NET Framework 3.5
|
||||
* .NET Framework 4.0
|
||||
@@ -27,12 +47,14 @@ This project was inspired by **Sharp.SSH** library which was ported from java an
|
||||
* Silverlight 5
|
||||
* Windows Phone 7.1
|
||||
* Windows Phone 8.0
|
||||
* Universal Windows Platform 10
|
||||
|
||||
#Building SSH.NET#
|
||||
|
||||
Software | .NET 3.5 | .NET 4.0 | SL 4 | SL 5 | WP 71 | WP 80
|
||||
--------------------- | :------: | :------: | :--: | :--: | :---: | :---:
|
||||
Windows Phone SDK 8.0 | | | x | x | x | x
|
||||
Visual Studio 2012 | x | x | x | x | x | x
|
||||
Software | .NET 3.5 | .NET 4.0 | SL 4 | SL 5 | WP 71 | WP 80 | UAP10
|
||||
--------------------------------- | :------: | :------: | :--: | :--: | :---: | :---: | :---:
|
||||
Windows Phone SDK 8.0 | | | x | x | x | x |
|
||||
Visual Studio 2012 Update 5 | x | x | x | x | x | x |
|
||||
Visual Studio 2015 Update 2 RC | x | x | | x | | x | x
|
||||
|
||||
[](http://ndepend.com)
|
||||
|
||||
Reference in New Issue
Block a user