I want to save some data in a file like .cvs. One of the condition is, that the data can't change after write in the file. If I want to read the data, it should be save that the data were not change in the past and I want to get an alert, if the data changed in the past by other.
For example a line in my .csv looks like this:
34, 234, test, monday, peter
How can I check, that line changed by somebody?
How can I lock, that nobody changed one of my lines?
I hope you know what I mean. If use google-search in context of this topic, I will often meet the topic of "hashing my data".
How does it work?