How do I implement integrity verification using the checksum of files in a client-server protocol where the client sends multiple files to the server. I am using the following steps:
- Client connects to the server and sends files.
- On server side, when the server receives the files, I have calculated checksum (using this) of client and server files.
- Then upon comparing the checksum of client and server files, integrity verification is done.
Is my process ok? Will the checksum calculation be the same if I need to calculate the checksum of video files?