Hi!
Thanks to jonathaniglesias, i was now able to configure the NTAG 424 DNA with encrypted-part and CMAC-part (https://community.nxp.com/message/1349087?commentID=1349087#comment-1349087) and also build my own backend (https://community.nxp.com/thread/535033) in order to be able to verfiy the cmac that is provide in the URL
Example-URL: https://ntag.nxp.com/424?e=EF963FF7828658A599F3041510671E88&c=94EED9EE65337086
--------
Now comes the last step of my NTAG 424 DNA configuration and verification process, which is:
- changing the keys from default to custom keys
- locking the tag so that NO further changes can be done to the tag
Until now i only used the default keys 00000000000000000000000000000000 or empty keys for testing purposes in my backend and on my tag.
My backend basically uses two keys for now, both have the value 00000000000000000000000000000000. Let's call these two keys:
- KeyDec: I am using this key to decrypt the encoded query parameter "e" which gives me the ctr and uid in plaintext afterwards
- KeyCmac: I am using this key to generate the session key with the help of the uid and the ctr value (from the process above), and afterwards I am able to get the CMAC in order to be able to compare my calculate CMAC with the CMAC from the URL (the "c" query param from the url above).
------
Until now i have not changed any of my keys on the tag and the configuration looks like this:

Goal:
Let us assume now that I want to use:
00000000000000000000000000000001 as value for my KeyDec
and
00000000000000000000000000000002 as value for my KeyCmac
Question:
What are the exact steps that i need to perform in the TagXplorer and in which order to achieve, that my backend would now successfully validate the tag with the new keys? (please with screenshots if possible :smileyhappy: )
-----
Question2:
Let us assume that the question above has been solved, how can i now (as a final step) protect my tag in a way that none of these keys can be read anymore from the tag and that also no data changes can be done anymore to the tag, so that the tag is ready to be used on a product in order to proof product authenticity?
Thank you (jonathaniglesias)
Btw: Thank you so much Jonathan for your great help at any time :smileyhappy:
Best,
Manuel