Home > Mobile >  How to validate user login and PIN
How to validate user login and PIN

Time:12-10

Windows 10/11 provides login to the system with user Login/PIN instead of a password. Is there any winapi way to validate the pair Login/PIN?

CodePudding user response:

You can check out the authentication API in this document, which describes several authentication sections (Credentials Management, LSA Authentication, Network Provider API, Smart Card Authentication, SSPI, Winlogon and Credential Providers), and here is an introduction to using Windows Authentication in C#.

  • Related