How can I write and deploy a custom authentication package in windows?

1k views Asked by At

I am trying to implement a custom authentication package where I can pass only user name from the custom credential provider to custom Authentication package and the Authentication package should check if that user name exists in Sam database if yes it should let me login, I am kind of trying to achieve a password less authentication here. I found the functions that are needed to implement this authentication package in windows documentation here as I am new to development of windows I didn't get much understanding from them, I am looking for a sample code of Authentication package where I can debug that sample and gain some knowledge on how it works.

1

There are 1 answers

2
Rita Han On BEST ANSWER

This a big topic. Provide some related documents you check and follow:

Without password required you need create your customized Credential Provider.

Creating Custom Security Packages

Winlogon and Credential Providers

Samples:

  • SAMPSSP - This sample demonstrates the implementation of a Windows NT Security Support Provider.
  • MSV1_0 SubAuthentication Sample - Authentication of users in the SAM database. Pass-Thru authentication of users in trusted domains.