Moved GSSAPI classes to the SMBLibrary.Authentication.GSSAPI namespace

This commit is contained in:
Tal Aloni 2017-02-15 16:09:03 +02:00
parent ac77fb6554
commit ee65a99a92
8 changed files with 8 additions and 8 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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