0
I need to protect a system’s data against database changes.
It’s a system that uses financial transactions. I need a mechanism to prevent someone with access to the database from making changes to fields such as launch values.
The system was developed in . NET CORE 3.1 with Entity Framework Core.
See if this is what you’re looking for Using Roles
– Augusto Vasques
What I need is some kind of encryption that invalidates the record if someone changes the values in the database. For example: a launch with a value of R$100 is created through the system. If someone changes the registration in the database to R $ 1.000 I want it to be possible to verify this change through the system.
– b3r3ch1t
Innodb Data-at-Rest Encryption
– Augusto Vasques
Augusto vc has some example of how to implement Data-at-Rest with EF core?
– b3r3ch1t