Skip to content

Commit b20790a

Browse files
committed
continued line endings struggle ...
continued line endings struggle ...
1 parent 451ffb9 commit b20790a

File tree

242 files changed

+23297
-23297
lines changed

Some content is hidden

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

242 files changed

+23297
-23297
lines changed

src/References/X.690-0207.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Source = http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf
2-
Code = .\Renci.SshNet\Common\DerData.cs
1+
Source = http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf
2+
Code = .\Renci.SshNet\Common\DerData.cs
33
Wiki = http://en.wikipedia.org/wiki/Distinguished_Encoding_Rules
Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
1-
using System;
2-
using System.Diagnostics;
3-
using System.Net.Sockets;
4-
using System.Security.Cryptography;
5-
using System.Text;
6-
using System.Threading;
7-
8-
namespace Renci.SshNet
9-
{
10-
/// <summary>
11-
/// Collection of different extension method specific for .NET 3.5
12-
/// </summary>
13-
internal static partial class Extensions
14-
{
15-
/// <summary>
16-
/// Disposes the specified socket.
17-
/// </summary>
18-
/// <param name="socket">The socket.</param>
19-
[DebuggerNonUserCode]
20-
internal static void Dispose(this Socket socket)
21-
{
22-
if (socket == null)
23-
throw new NullReferenceException();
24-
25-
socket.Close();
26-
}
27-
28-
/// <summary>
29-
/// Disposes the specified handle.
30-
/// </summary>
31-
/// <param name="handle">The handle.</param>
32-
[DebuggerNonUserCode]
33-
internal static void Dispose(this WaitHandle handle)
34-
{
35-
if (handle == null)
36-
throw new NullReferenceException();
37-
38-
handle.Close();
39-
}
40-
41-
/// <summary>
42-
/// Disposes the specified algorithm.
43-
/// </summary>
44-
/// <param name="algorithm">The algorithm.</param>
45-
[DebuggerNonUserCode]
46-
internal static void Dispose(this HashAlgorithm algorithm)
47-
{
48-
if (algorithm == null)
49-
throw new NullReferenceException();
50-
51-
algorithm.Clear();
52-
}
53-
54-
/// <summary>
55-
/// Clears the contents of the string builder.
56-
/// </summary>
57-
/// <param name="value">
58-
/// The <see cref="StringBuilder"/> to clear.
59-
/// </param>
60-
public static void Clear(this StringBuilder value)
61-
{
62-
value.Length = 0;
63-
value.Capacity = 16;
64-
}
65-
}
66-
}
1+
using System;
2+
using System.Diagnostics;
3+
using System.Net.Sockets;
4+
using System.Security.Cryptography;
5+
using System.Text;
6+
using System.Threading;
7+
8+
namespace Renci.SshNet
9+
{
10+
/// <summary>
11+
/// Collection of different extension method specific for .NET 3.5
12+
/// </summary>
13+
internal static partial class Extensions
14+
{
15+
/// <summary>
16+
/// Disposes the specified socket.
17+
/// </summary>
18+
/// <param name="socket">The socket.</param>
19+
[DebuggerNonUserCode]
20+
internal static void Dispose(this Socket socket)
21+
{
22+
if (socket == null)
23+
throw new NullReferenceException();
24+
25+
socket.Close();
26+
}
27+
28+
/// <summary>
29+
/// Disposes the specified handle.
30+
/// </summary>
31+
/// <param name="handle">The handle.</param>
32+
[DebuggerNonUserCode]
33+
internal static void Dispose(this WaitHandle handle)
34+
{
35+
if (handle == null)
36+
throw new NullReferenceException();
37+
38+
handle.Close();
39+
}
40+
41+
/// <summary>
42+
/// Disposes the specified algorithm.
43+
/// </summary>
44+
/// <param name="algorithm">The algorithm.</param>
45+
[DebuggerNonUserCode]
46+
internal static void Dispose(this HashAlgorithm algorithm)
47+
{
48+
if (algorithm == null)
49+
throw new NullReferenceException();
50+
51+
algorithm.Clear();
52+
}
53+
54+
/// <summary>
55+
/// Clears the contents of the string builder.
56+
/// </summary>
57+
/// <param name="value">
58+
/// The <see cref="StringBuilder"/> to clear.
59+
/// </param>
60+
public static void Clear(this StringBuilder value)
61+
{
62+
value.Length = 0;
63+
value.Capacity = 16;
64+
}
65+
}
66+
}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
3-
using System.Runtime.InteropServices;
4-
5-
[assembly: AssemblyTitle("SSH.NET .NET 3.5")]
6-
[assembly: Guid("a9698831-4993-469b-81f1-aed4e5379252")]
7-
[assembly: InternalsVisibleTo("Renci.SshNet.Tests.NET35, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f9194e1eb66b7e2575aaee115ee1d27bc100920e7150e43992d6f668f9737de8b9c7ae892b62b8a36dd1d57929ff1541665d101dc476d6e02390846efae7e5186eec409710fdb596e3f83740afef0d4443055937649bc5a773175b61c57615dac0f0fd10f52b52fedf76c17474cc567b3f7a79de95dde842509fb39aaf69c6c2")]
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
[assembly: AssemblyTitle("SSH.NET .NET 3.5")]
6+
[assembly: Guid("a9698831-4993-469b-81f1-aed4e5379252")]
7+
[assembly: InternalsVisibleTo("Renci.SshNet.Tests.NET35, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f9194e1eb66b7e2575aaee115ee1d27bc100920e7150e43992d6f668f9737de8b9c7ae892b62b8a36dd1d57929ff1541665d101dc476d6e02390846efae7e5186eec409710fdb596e3f83740afef0d4443055937649bc5a773175b61c57615dac0f0fd10f52b52fedf76c17474cc567b3f7a79de95dde842509fb39aaf69c6c2")]
88
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]

0 commit comments

Comments
 (0)