Support for DLU by allowing luid's to be passed by the system process.

This commit is contained in:
Jim Norman
2006-10-17 20:39:48 +00:00
parent 3f093e092d
commit 39fdc355c7
4 changed files with 103 additions and 9 deletions

View File

@@ -48,6 +48,10 @@ namespace TestClientAuth
try
{
WinLuid luid = new WinLuid(1234, 5678);
Authtoken.ObtainAuthToken("testService", args[0], luid);
byte[] baToken = Authtoken.ObtainAuthToken("testService", args[0]);
Console.WriteLine("Token returned: ("+ baToken.Length + ")");
for (int i=0; i<baToken.Length; i++)