博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CheckSum
阅读量:4515 次
发布时间:2019-06-08

本文共 847 字,大约阅读时间需要 2 分钟。

1、What is Checksum?

A check sum is basically a value that is computed from data packet to check its integrity(完整性). Through integrity, we mean a check on whether the data received is error free or not(数据是否正确). This is because while traveling on network a data packet can become corrupt and there has to be a way at the receiving end to know that data is corrupted or not(在接收端识别出数据是否有错). This is the reason the checksum field is added to the header. At the source side, the checksum is calculated and set in header as a field. At the destination side, the checksum is again calculated and crosschecked with the existing checksum value in header to see if the data packet is OK or not(在目的端或者接收端,重新计算 checksum/校验和,并和 数据头/packet header 里的 (existing checksum value)/已存校验和 比较/crosscheck。) .

REFER:

转载于:https://www.cnblogs.com/xuanyuanchen/p/6000935.html

你可能感兴趣的文章
Ural 1146 Maximum Sum(DP)
查看>>
《STL源代码分析》---stl_stack.h读书笔记
查看>>
UVA 10385 - Duathlon(三分法)
查看>>
div同时使用两个class
查看>>
在路上,三线城市互联网创业记录
查看>>
spark 编译遇到的错误及解决办法(五)
查看>>
框架篇: React + React-Router + antd + nodejs + express框架开发运用(nodejs做前后端server)...
查看>>
8、使用转换流处理标准输入
查看>>
Git 常用命令
查看>>
Why does Http header contains "X-SourceFiles"?
查看>>
uva 10976 fractions again(水题)——yhx
查看>>
爬虫实战篇---数据入库之去重与数据库
查看>>
CMPSC-132 – Programming and Computation
查看>>
洛谷 P4878 [USACO05DEC] 布局
查看>>
Python MySQL Django一些问题
查看>>
OpenGL------显示列表
查看>>
『科学计算』高斯判别分析模型实现
查看>>
『Pickle』数据结构持久化模块_常用方法记录
查看>>
pycharm 的包路径设置export PYTHONPATH=$PYTHONPATH
查看>>
SQL语句创建函数
查看>>