Files
NSspi/NSspi/PackageNames.cs
Kevin Thompson 3b189d2865 Code cleanup
Fixed code style using CodeMaid.
2017-09-24 01:52:45 -04:00

25 lines
643 B
C#

using System;
namespace NSspi
{
/// <summary>
/// Provides canonical names for security pacakges.
/// </summary>
public static class PackageNames
{
/// <summary>
/// Indicates the Negotiate security package.
/// </summary>
public const string Negotiate = "Negotiate";
/// <summary>
/// Indicates the Kerberos security package.
/// </summary>
public const string Kerberos = "Kerberos";
/// <summary>
/// Indicates the NTLM security package.
/// </summary>
public const string Ntlm = "NTLM";
}
}