2014-07-07 19:15:05 +00:00
2014-07-01 18:10:17 +00:00
2014-07-07 17:27:19 +00:00

This projects provides a C# / .Net interface to the Windows Integrated Authentication API, 
better known as SSPI (Security Service Provider Interface).

The SSPI API provides an interface for real authentication protocols, such as Kerberos or 
NTLM, to be invoked transparently by client and server code in order to perform authentication
and message manipulation. These authentication protocols are better known as 'security packages'.

The SSPI API exposes these packages using a common API, and so a program may invoke one or the 
other with only minor changes in implementation. SSPI also supports the 'negotiate' 'meta' 
package, that allows a client and server to decide dynamically which real security provider to 
use, and then itself provides a passthrough interface to the real package.

==== Usage ====

Typically, a client acquires some form of a credential, either from the currently logged on
user's security context, by acquiring a username and password from the user, or by some other
means. The server acquires a credential in a similar manner. Each uses their credentials to 
identify themselves to each other.

A client and a server each start with uninitialized security contexts. They exchange negotiation
and authentication tokens to perform authentication, and if all succeeds, they create a shared 
security context in the form of a client's context and a server's context. The effectively shared
context agrees on the security package to use (kerberos, NTLM), and what parameters to use 
for message passing. Every new client that authenticates with a server creates a new security 
context specific to that client-server pairing.

From the software perspective, a client security context initializes itself by exchanging 
authentication tokens with a server; the server initializes itself by exchanging authentication
tokens with the client.

This API provides raw access to the authentication tokens created during the negotiation and 
authentication process. In this manner, any application can integrate SSPI-based authentication
by deciding for themselves how to integrate the tokens into their application protocol.

The project is broken up into 3 chunks:

 * The NSspi library, which provides safe, managed access to the SSPI API.
 * NsspiDemo, a quick demo program to show how to exercise the features of NSspi locally.
 * UI demo programs TestClient and TestServer (that have a common dependency on TestProtocol) that
   may be run on separate machines, that show how one might integrate SSPI into a custom 
   application.

==== More information ====

If you would like to understand the SSPI API, feel free to browse the following references:

MSDN documentation on the SSPI API
	http://msdn.microsoft.com/en-us/library/windows/desktop/aa374731(v=vs.85).aspx

MSDN article on SSPI along with a sample Managed C++ SSPI library and UI client/servers.
	http://msdn.microsoft.com/en-us/library/ms973911.aspx

Relevant StackOverflow questions:
"Client-server authentication - using SSPI?"
  - http://stackoverflow.com/questions/17241365/

"Validate Windows Identity Token"
  - http://stackoverflow.com/questions/11238141/

"How to deal with allocations in constrained execution regions?"
  - http://stackoverflow.com/questions/24442209/

"AcquireCredentialsHandle returns massive expiration time"
  - http://stackoverflow.com/questions/24478056/


Description
A C# / .Net interface to the Win32 SSPI authentication API
Readme 294 KiB
Languages
C# 100%