Skip to content

RFID Processing

The server-side RFID reprocessing lets you perform complete server-side verification for electronic document chip. While reading is performed on mobile via NFC, the server is involved in the process for generation and storage of session keys and challenges.

This allows further reprocessing of the captured reading session in the “zero-trust to mobile” model to validate the chip and its data authenticity and validity via Chip Authentication, Active Authentication and Passive Authentication on the server-side.

To enable the server-side RFID processing, make sure to deploy a local service and data storage for the session keys and challenges. On the service side, set the Chip Verification parameters and/or Passive Authentication parameters.

Request Parameters

You can configure RFID chip processing parameters at the request time.

Use paSensitiveCodesDisable to define notification codes that should be ignored during passive authentication (PA). For the full list of notification codes, see the eLDS_ParsingNotificationCodes enumeration.

Here is an example with two PA sensitive codes defined:

{
    "processParam": {
        "rfid": {
            "paSensitiveCodesDisable": [
                -1879047913,
                -1879047667
            ]
        }
    }
}

Next Steps