Skip to content

Commit

Permalink
refactor package name
Browse files Browse the repository at this point in the history
  • Loading branch information
clowwindy committed Jan 1, 2015
1 parent 5010a01 commit db6701b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Controller/Local.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Text;
using System.Net.Sockets;
using System.Net;
using Shadowsocks.Encrypt;
using Shadowsocks.Encryption;
using Shadowsocks.Model;

namespace Shadowsocks.Controller
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/EncryptorBase.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Security.Cryptography;
using System.Text;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public abstract class EncryptorBase
: IEncryptor
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/EncryptorFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public static class EncryptorFactory
{
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/IEncryptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public interface IEncryptor : IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/IVEncryptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Security.Cryptography;
using System.Text;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public abstract class IVEncryptor
: EncryptorBase
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/PolarSSL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Runtime.InteropServices;
using System.Text;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public class PolarSSL
{
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/PolarSSLEncryptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using System.Threading;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public class PolarSSLEncryptor
: IVEncryptor, IDisposable
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/Sodium.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Runtime.InteropServices;
using System.Text;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public class Sodium
{
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/SodiumEncryptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public class SodiumEncryptor
: IVEncryptor, IDisposable
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Encryption/TableEncryptor.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace Shadowsocks.Encrypt
namespace Shadowsocks.Encryption
{
public class TableEncryptor
: EncryptorBase
Expand Down
2 changes: 1 addition & 1 deletion test/UnitTest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Shadowsocks.Controller;
using Shadowsocks.Encrypt;
using Shadowsocks.Encryption;
using System.Threading;
using System.Collections.Generic;

Expand Down

0 comments on commit db6701b

Please sign in to comment.