├── .gitignore ├── LICENSE ├── README.md └── src ├── ClientApp ├── App.config ├── Client.Program.cs ├── ClientApp.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── DelegatedApp ├── App.config ├── Delegated.Program.cs ├── DelegatedApp.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── DelegatedAuthenticationSample.sln ├── ServerApp ├── App.config ├── Properties │ └── AssemblyInfo.cs ├── Server.Program.cs ├── ServerApp.csproj └── packages.config └── Shared ├── Client.cs ├── ContextDebugger.cs ├── ContextFlag.cs ├── ContextStatus.cs ├── Credential.cs ├── DebugExtensions.cs ├── Endian.cs ├── ImpersonationContext.cs ├── KeytabCredential.cs ├── Message.cs ├── NativeMethods.cs ├── Operation.cs ├── PasswordCredential.cs ├── Properties └── AssemblyInfo.cs ├── SecStatus.cs ├── SecurityContext.cs ├── SecurityContextAttribute.cs ├── Server.cs ├── ServiceRequest.cs ├── Shared.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/README.md -------------------------------------------------------------------------------- /src/ClientApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ClientApp/App.config -------------------------------------------------------------------------------- /src/ClientApp/Client.Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ClientApp/Client.Program.cs -------------------------------------------------------------------------------- /src/ClientApp/ClientApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ClientApp/ClientApp.csproj -------------------------------------------------------------------------------- /src/ClientApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ClientApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ClientApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ClientApp/packages.config -------------------------------------------------------------------------------- /src/DelegatedApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/DelegatedApp/App.config -------------------------------------------------------------------------------- /src/DelegatedApp/Delegated.Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/DelegatedApp/Delegated.Program.cs -------------------------------------------------------------------------------- /src/DelegatedApp/DelegatedApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/DelegatedApp/DelegatedApp.csproj -------------------------------------------------------------------------------- /src/DelegatedApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/DelegatedApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DelegatedApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/DelegatedApp/packages.config -------------------------------------------------------------------------------- /src/DelegatedAuthenticationSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/DelegatedAuthenticationSample.sln -------------------------------------------------------------------------------- /src/ServerApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ServerApp/App.config -------------------------------------------------------------------------------- /src/ServerApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ServerApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ServerApp/Server.Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ServerApp/Server.Program.cs -------------------------------------------------------------------------------- /src/ServerApp/ServerApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ServerApp/ServerApp.csproj -------------------------------------------------------------------------------- /src/ServerApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/ServerApp/packages.config -------------------------------------------------------------------------------- /src/Shared/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Client.cs -------------------------------------------------------------------------------- /src/Shared/ContextDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/ContextDebugger.cs -------------------------------------------------------------------------------- /src/Shared/ContextFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/ContextFlag.cs -------------------------------------------------------------------------------- /src/Shared/ContextStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/ContextStatus.cs -------------------------------------------------------------------------------- /src/Shared/Credential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Credential.cs -------------------------------------------------------------------------------- /src/Shared/DebugExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/DebugExtensions.cs -------------------------------------------------------------------------------- /src/Shared/Endian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Endian.cs -------------------------------------------------------------------------------- /src/Shared/ImpersonationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/ImpersonationContext.cs -------------------------------------------------------------------------------- /src/Shared/KeytabCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/KeytabCredential.cs -------------------------------------------------------------------------------- /src/Shared/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Message.cs -------------------------------------------------------------------------------- /src/Shared/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/NativeMethods.cs -------------------------------------------------------------------------------- /src/Shared/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Operation.cs -------------------------------------------------------------------------------- /src/Shared/PasswordCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/PasswordCredential.cs -------------------------------------------------------------------------------- /src/Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Shared/SecStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/SecStatus.cs -------------------------------------------------------------------------------- /src/Shared/SecurityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/SecurityContext.cs -------------------------------------------------------------------------------- /src/Shared/SecurityContextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/SecurityContextAttribute.cs -------------------------------------------------------------------------------- /src/Shared/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Server.cs -------------------------------------------------------------------------------- /src/Shared/ServiceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/ServiceRequest.cs -------------------------------------------------------------------------------- /src/Shared/Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/Shared.csproj -------------------------------------------------------------------------------- /src/Shared/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveSyfuhs/DelegatedAuthentication/HEAD/src/Shared/packages.config --------------------------------------------------------------------------------