Thank you for the answer @rudi_cyber, I get your point, but still something is not right...
Now, let's go for the next step on how we encrypt the partitions... We were previously using the blob to encrypt/decrypt, but we know this is not quite safe as the blob is just available.
We're using `cryptsetup` for this, so for encrypting we're:
`cryptsetup -q luksFormat /dev/mmcblk1 --key-file /tmp/devicekey`
and to decrypt (after reboot) we're:
`cryptsetup open /dev/mmcblk1 rootA --key-file /tmp/deviceKey`
We're checking the an12714 (attached), they're using dmsetup instead, however still having a reboot in the middle and using the same black key generated from the blob in different boots to decrypt the partition. What am I missing here?