Helper classes to provide client-aspect usage and server-aspect usage of the API.

This commit is contained in:
antiduh
2014-06-19 03:12:40 +00:00
parent 737ebc19da
commit 3c100caf28
2 changed files with 25 additions and 0 deletions

12
ClientCredential.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NSspi
{
class ClientCredential
{
}
}

13
ServerCredential.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NSspi
{
public class ServerCredential : Credential
{
public ServerCredential( SecurityPackage package ) : base( package, CredentialType.Server ) { }
}
}