Просмотр исходного кода

Moved GSSAPI classes to the SMBLibrary.Authentication.GSSAPI namespace

Tal Aloni 8 лет назад
Родитель
Сommit
ee65a99a92

+ 1 - 1
SMBLibrary/Authentication/GSSAPI/GSSAPIHelper.cs

@@ -8,7 +8,7 @@ using System;
 using System.Collections.Generic;
 using Utilities;
 
-namespace SMBLibrary.Authentication
+namespace SMBLibrary.Authentication.GSSAPI
 {
     public class GSSAPIHelper
     {

+ 1 - 1
SMBLibrary/Authentication/GSSAPI/SPNEGO/DerEncodingHelper.cs

@@ -8,7 +8,7 @@ using System;
 using System.Collections.Generic;
 using Utilities;
 
-namespace SMBLibrary.Authentication
+namespace SMBLibrary.Authentication.GSSAPI
 {
     public enum DerEncodingTag : byte
     {

+ 1 - 1
SMBLibrary/Authentication/GSSAPI/SPNEGO/SimpleProtectedNegotiationToken.cs

@@ -9,7 +9,7 @@ using System.Collections.Generic;
 using System.Text;
 using Utilities;
 
-namespace SMBLibrary.Authentication
+namespace SMBLibrary.Authentication.GSSAPI
 {
     public abstract class SimpleProtectedNegotiationToken
     {

+ 1 - 1
SMBLibrary/Authentication/GSSAPI/SPNEGO/SimpleProtectedNegotiationTokenInit.cs

@@ -9,7 +9,7 @@ using System.Collections.Generic;
 using System.IO;
 using Utilities;
 
-namespace SMBLibrary.Authentication
+namespace SMBLibrary.Authentication.GSSAPI
 {
     /// <summary>
     /// RFC 4178 - negTokenInit

+ 1 - 1
SMBLibrary/Authentication/GSSAPI/SPNEGO/SimpleProtectedNegotiationTokenResponse.cs

@@ -9,7 +9,7 @@ using System.Collections.Generic;
 using System.IO;
 using Utilities;
 
-namespace SMBLibrary.Authentication
+namespace SMBLibrary.Authentication.GSSAPI
 {
     public enum NegState : byte
     {

+ 1 - 1
SMBLibrary/Server/SMB1/SessionSetupHelper.cs

@@ -7,7 +7,7 @@
 using System;
 using System.Collections.Generic;
 using System.Text;
-using SMBLibrary.Authentication;
+using SMBLibrary.Authentication.GSSAPI;
 using SMBLibrary.Authentication.NTLM;
 using SMBLibrary.SMB1;
 using Utilities;

+ 1 - 1
SMBLibrary/Server/SMB2/NegotiateHelper.cs

@@ -6,7 +6,7 @@
  */
 using System;
 using System.Collections.Generic;
-using SMBLibrary.Authentication;
+using SMBLibrary.Authentication.GSSAPI;
 using SMBLibrary.SMB2;
 using Utilities;
 

+ 1 - 1
SMBLibrary/Server/SMB2/SessionSetupHelper.cs

@@ -6,7 +6,7 @@
  */
 using System;
 using System.Collections.Generic;
-using SMBLibrary.Authentication;
+using SMBLibrary.Authentication.GSSAPI;
 using SMBLibrary.Authentication.NTLM;
 using SMBLibrary.SMB2;
 using Utilities;