Checksum

также cksum, check sum от summation check контрольная сумма число, вычисляемое по определённым правилам по содержимому блока данных для проверки получателем целостности данных при хранении или передаче. Если контрольная сумма, вычисленная получающим устройством, не совпадает с принятой контрольной суммой, то целостность данных нарушена. Простейший способ получения контрольной суммы - сложение содержимого всех байтов блока данных по модулю 256 Смотри также: CRC, ECC memory, echo check, error detection, LRC, VRC Например: Bridges verify checksums on the data packets that they are trying to forward, and discard packets that have bad checksums (Scott Bradner) Мосты проверяют контрольные суммы пересылаемых пакетов данных, и отвергают те из них, у которых эти суммы неверны

Англо-русский словарь компьютерных терминов

Checksum

контрольная сумма

Англо-русский политехнический словарь

Checksum

noun a sum derived from the bits of a segment of computer data that is calculated before and after transmission or storage to assure that the data is free from errors or tampering

Merriam-Webster's Collegiate Dictionary

Checksum

A computed value which depends on the contents of a block of data and which is transmitted or stored along with the data in order to detect corruption of the data. The receiving system recomputes the checksum based upon the received data and compares this value with the one sent with the data. If the two values are the same, the receiver has some confidence that the data was received correctly. The checksum may be 8 bits (modulo 256 sum), 16, 32, or some other size. It is computed by summing the bytes or words of the data block ignoring overflow. The checksum may be negated so that the total of the data words plus the checksum is zero. Internet packets use a 32-bit checksum. See also digital signature, cyclic redundancy check.

Free Online Dictionary of Computing