Situations that require protecting files against tampering when stored on a users computer
Posted
by
Joel
on Programmers
See other posts from Programmers
or by Joel
Published on 2012-09-04T19:22:55Z
Indexed on
2012/09/04
21:50 UTC
Read the original article
Hit count: 274
security
I'm making a 'Pokémon Storage System' with a Client/Server model and as part of that I was thinking of storing an inventory file on the users computer which I do not wish to be edited except by my program. An alternative to this would be to instead to store the inventory file on the server and control it's editing by sending commands to the server but I was wondering if there are any situations which require files to be stored on a users computer where editing would be undesirable and if so how do you protect the files? I was thinking AES with some sort of checksum?
© Programmers or respective owner