Currently in my C# console application, I've implemented an NFC tag reader functionality by sending APDU commands using ModWinsCard. So far I can get a list of connected readers, connect to it, get the NFC tag's UID, and reading/writing NDEF message to the NFC tag.
Right now, I'm trying to check whether the NFC tag in question is a genuine tag made by NXP by validating the originality signature, as per this document: https://www.nxp.com/docs/en/data-sheet/NTAG213_215_216.pdf (section 8.9).
However, while I have implemented the signature validation, I have yet to be able to get the signature from the NFC tag, since section 10.8 (READ_SIG) does not have any equivalent for APDU command.
Is there any APDU command I can use to send the READ_SIG command to the NFC tag and get the originality signature? The reader I'm currently using is ACS ACR1281U-C1, if it's any help.