From 56ca05b2309b07a92d01c9b16f2d9524a81f38a6 Mon Sep 17 00:00:00 2001 From: Kevin Thompson Date: Tue, 12 Feb 2019 01:17:03 -0500 Subject: [PATCH] Fixed typo --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index ade844c..3f43de9 100644 --- a/readme.md +++ b/readme.md @@ -13,7 +13,7 @@ You can also browse the list of [releases](https://github.com/antiduh/nsspi/rele ## Introduction ## -This projects provides a C# / .Net interface to the Windows Integrated Authentication API, better known as SSPI (Security Service Provider Interface). This allows a custom client / server system to authenticate users using their existing logon credentials. This allows a developer to provide Single-Sign-On in their application. +This project provides a C# / .Net interface to the Windows Integrated Authentication API, better known as SSPI (Security Service Provider Interface). This allows a custom client / server system to authenticate users using their existing logon credentials. This allows a developer to provide Single-Sign-On in their application. ## Overview ## The API provides raw access to authentication tokens so that authentication can be easily integrated into any networking system - you can send the tokens over a socket, a remoting interface, or heck even a serial port if you want; they're just bytes. Clients and servers may exchange encrypted and signed messages, and the server can perform client impersonation.