Advertisement
kbrosnan17

Untitled

Oct 26th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. It is possible for data to be altered in a way that leads to no change in the checksum.
  2. Two files, network packets, etc. can have the same checksum.
  3. Checksums are usually much simpler and faster to calculate than hashes. They are simple enough to be used for high-speed
  4. applications such as network protocols, e.g. the Frame Check Sequence in Ethernet.
  5. Simple checksums are not sensitive to the order of the input data; the kind which is mostly used is a cyclic redundancy checksum
  6. (CRC) which takes into account the order of data.
  7. Common checksum algorithms are designed to be implemented in hardware, so that they can be embedded in network devices for
  8. example. They are also designed to detect the types of errors that commonly occur in transmission of data (small groups of errors
  9. close together, called burst errors).
  10. You will sometimes see the term "checksum" used to mean both hashes and the simpler type; be sure you are clear what is meant.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement