I'm kind of new with NFC and Raspberry Pi and I'm trying to create an authentication system for a PC using Pi with an ACR122U USB NFC Tag Reader. I was planning on connecting the reader to the Pi, but I was wondering if it's possible to unlock PC only after the password is entered and the NFC tag is scanned. If so how? I also was wondering if it was possible to scan the NFC tag and take the user to an log in screen to unlock your computer
0
votes
1 Answers
0
votes
What exactly do you try to unlock? The PC or the Pi board?
If you want to unlock a Pi with NFC tag I guess that you will have to use a PAM NFC module (see here http://nfc-tools.org/index.php?title=Pam_nfc)
If you want to unlock a PC using a NFC with a reader connected to the PC tag see below:
The windows authentication architecture is described here: https://technet.microsoft.com/en-us/library/dn169016(v=ws.10).aspx
Basically you will have to implement a "Custom Credentials Provider" and a LogonUI. I have found a GitHub repository called Sesame that implements a complete NFC credentials provider - you might get some inspiration from there.