- Bug 169353. Prompt user for Desktop Password when Master Password is not present.

This commit is contained in:
Jim Norman
2006-05-08 02:38:42 +00:00
parent f6a659b7eb
commit 837669576a
9 changed files with 11900 additions and 11371 deletions

View File

@@ -151,6 +151,18 @@ namespace Novell.CASA
return NativeCalls.ResetMasterPassword(sCurrentPassword, sNewPassword);
}
}
public static bool ValidateDesktopPwd(string sPassword)
{
if (sPassword != null)
{
return NativeCalls.ValidateDesktopPwd(sPassword);
}
else
{
return false;
}
}
}
}