So, I'm done backing-up my database file, but as we all know, the contents of a .sql
file can be modified using notepad or notepad++, I am looking for any suggestions on how to secure it (like with a password maybe?), so not anyone could modify its contents. Any help is greatly appreciated!
Asked
Active
Viewed 364 times
0

GenesisTepait
- 63
- 1
- 10
1 Answers
0
You can use any solution that is proper for text files. I mention just few of them:
ZIP
it with password protected and/or encryption- Encrypt file using
gnupg
or other encryption tool - At the end calculate
MD5
orSHA
checksum and check it before restoring - this not save you from changes but any change make checksum invalid.

Łukasz Jakubek
- 995
- 5
- 12