I started to play around with the SE050E and I successfully compiled the middleware with its ssscli tool.
My use case is that I need an attestation (from preprovisioned NXP keys) that a binary file stored in the SE050E on the embedded device is unchanged (sign binary file / verify binary file).
On device X I can do a sign/verify with the following commands:
ssscli sign 0xF0000000 foo foo_signed
ssscli verify 0xF0000000 foo foo_signed
When I copy foo and foo_signed to another embedded device Y, I want to be able to check that the file signed by NXP. But the verification fails.
So my question: How would you do such an attestation with ssscli on 2 different embedded devices X and Y?