Skip to content

Commit 488c480

Browse files
committed
Remove alias using statement
1 parent d1f95bc commit 488c480

File tree

10 files changed

+11
-185
lines changed

10 files changed

+11
-185
lines changed

src/Renci.SshNet/ConnectionInfo.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
using Renci.SshNet.Security.Cryptography;
1414
using Renci.SshNet.Security.Cryptography.Ciphers;
1515

16-
using CipherMode = System.Security.Cryptography.CipherMode;
17-
1816
namespace Renci.SshNet
1917
{
2018
/// <summary>

src/Renci.SshNet/PrivateKeyFile.OpenSSH.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
using System;
33
using System.Globalization;
44
using System.Linq;
5+
using System.Security.Cryptography;
56
using System.Text;
67

78
using Renci.SshNet.Common;
89
using Renci.SshNet.Security;
910
using Renci.SshNet.Security.Cryptography;
1011
using Renci.SshNet.Security.Cryptography.Ciphers;
1112

12-
using CipherMode = System.Security.Cryptography.CipherMode;
13-
1413
namespace Renci.SshNet
1514
{
1615
public partial class PrivateKeyFile

src/Renci.SshNet/PrivateKeyFile.PKCS1.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
using Renci.SshNet.Security;
1111
using Renci.SshNet.Security.Cryptography.Ciphers;
1212

13-
using CipherMode = System.Security.Cryptography.CipherMode;
14-
1513
namespace Renci.SshNet
1614
{
1715
public partial class PrivateKeyFile

src/Renci.SshNet/PrivateKeyFile.PuTTY.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
using Renci.SshNet.Security;
1515
using Renci.SshNet.Security.Cryptography.Ciphers;
1616

17-
using CipherMode = System.Security.Cryptography.CipherMode;
18-
1917
namespace Renci.SshNet
2018
{
2119
public partial class PrivateKeyFile

src/Renci.SshNet/PrivateKeyFile.SSHCOM.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
using Renci.SshNet.Security;
99
using Renci.SshNet.Security.Cryptography.Ciphers;
1010

11-
using CipherMode = System.Security.Cryptography.CipherMode;
12-
1311
namespace Renci.SshNet
1412
{
1513
public partial class PrivateKeyFile

test/Renci.SshNet.Benchmarks/Security/Cryptography/Ciphers/AesCipherBenchmarks.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using BenchmarkDotNet.Attributes;
1+
using System.Security.Cryptography;
22

3-
using Renci.SshNet.Security.Cryptography.Ciphers;
3+
using BenchmarkDotNet.Attributes;
44

5-
using CipherMode = System.Security.Cryptography.CipherMode;
5+
using Renci.SshNet.Security.Cryptography.Ciphers;
66

77
namespace Renci.SshNet.Benchmarks.Security.Cryptography.Ciphers
88
{

test/Renci.SshNet.Benchmarks/Security/Cryptography/Ciphers/TripleDesCipherBenchmarks.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using BenchmarkDotNet.Attributes;
1+
using System.Security.Cryptography;
22

3-
using Renci.SshNet.Security.Cryptography.Ciphers;
3+
using BenchmarkDotNet.Attributes;
44

5-
using CipherMode = System.Security.Cryptography.CipherMode;
5+
using Renci.SshNet.Security.Cryptography.Ciphers;
66

77
namespace Renci.SshNet.Benchmarks.Security.Cryptography.Ciphers
88
{

test/Renci.SshNet.Tests/Classes/Security/Cryptography/BlockCipherTest.cs

Lines changed: 0 additions & 164 deletions
This file was deleted.

test/Renci.SshNet.Tests/Classes/Security/Cryptography/Ciphers/AesCipherTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
using System.Linq;
2+
using System.Security.Cryptography;
23

34
using Microsoft.VisualStudio.TestTools.UnitTesting;
45

56
using Renci.SshNet.Common;
67
using Renci.SshNet.Security.Cryptography.Ciphers;
78
using Renci.SshNet.Tests.Common;
89

9-
using CipherMode = System.Security.Cryptography.CipherMode;
10-
1110
namespace Renci.SshNet.Tests.Classes.Security.Cryptography.Ciphers
1211
{
1312
/// <summary>

test/Renci.SshNet.Tests/Classes/Security/Cryptography/Ciphers/TripleDesCipherTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using Microsoft.VisualStudio.TestTools.UnitTesting;
1+
using System.Security.Cryptography;
2+
3+
using Microsoft.VisualStudio.TestTools.UnitTesting;
24

35
using Renci.SshNet.Security.Cryptography.Ciphers;
46
using Renci.SshNet.Tests.Common;
57

6-
using CipherMode = System.Security.Cryptography.CipherMode;
7-
88
namespace Renci.SshNet.Tests.Classes.Security.Cryptography.Ciphers
99
{
1010
/// <summary>

0 commit comments

Comments
 (0)