Skip to content

Commit 35599b4

Browse files
committedJun 25, 2016
Merge remote-tracking branch 'refs/remotes/origin/develop'
2 parents 4f25cc0 + bfbf64f commit 35599b4

File tree

486 files changed

+51610
-51027
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

486 files changed

+51610
-51027
lines changed
 

‎.gitattributes

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
*.cs text
44
*.xaml text
5-
*.sln text eol=crlf
6-
*.csproj text eol=crlf
7-
*.shproj text eol=crlf
8-
*.appxmanifest text eol=crlf
5+
*.sln eol=crlf
6+
*.csproj eol=crlf
7+
*.shproj eol=crlf
8+
*.appxmanifest eol=crlf
99

1010
*.png binary
1111
*.jpg binary

‎README.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
#Introduction#
1+
SSH.NET
2+
=======
3+
SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.
4+
5+
[![Version](https://img.shields.io/nuget/vpre/SSH.NET.svg)](https://www.nuget.org/packages/SSH.NET)
6+
[![Build status](https://ci.appveyor.com/api/projects/status/ih77qu6tap3o92gu/branch/develop?svg=true)](https://ci.appveyor.com/api/projects/status/ih77qu6tap3o92gu/branch/develop)
7+
8+
##Introduction
29
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.
310

4-
#Features#
11+
##Features
512
* Execution of SSH command using both synchronous and asynchronous methods
613
* Return command execution exit status and other information
714
* Provide SFTP functionality for both synchronous and asynchronous operations
@@ -18,15 +25,15 @@ This project was inspired by **Sharp.SSH** library which was ported from java an
1825
* Supports two-factor or higher authentication
1926
* Supports SOCKS4, SOCKS5 and HTTP Proxy
2027

21-
#Key Exchange Method#
28+
##Key Exchange Method
2229

2330
**SSH.NET** supports the following key exchange methods:
2431
* diffie-hellman-group-exchange-sha256
2532
* diffie-hellman-group-exchange-sha1
2633
* diffie-hellman-group14-sha1
2734
* diffie-hellman-group1-sha1
2835

29-
#Message Authentication Code#
36+
##Message Authentication Code
3037

3138
**SSH.NET** supports the following MAC algorithms:
3239
* hmac-md5
@@ -40,7 +47,7 @@ This project was inspired by **Sharp.SSH** library which was ported from java an
4047
* hmac-ripemd160
4148
* hmac-ripemd160@openssh.com
4249

43-
#Framework Support#
50+
##Framework Support
4451
**SSH.NET** supports the following target frameworks:
4552
* .NET Framework 3.5
4653
* .NET Framework 4.0
@@ -88,7 +95,7 @@ FEATURE_DNS_APM | [Dns](https://msdn.microsoft.com/en-us/librar
8895
FEATURE_DNS_SYNC | [Dns](https://msdn.microsoft.com/en-us/library/system.net.dns.aspx) supports synchronous execution
8996
FEATURE_REFLECTION_TYPEINFO |
9097

91-
#Building SSH.NET#
98+
##Building SSH.NET
9299

93100
Software | .NET 3.5 | .NET 4.0 | SL 4 | SL 5 | WP 71 | WP 80 | UAP10
94101
--------------------------------- | :------: | :------: | :--: | :--: | :---: | :---: | :---:

0 commit comments

Comments
 (0)
Please sign in to comment.