Delphi 数据异或校验


本文整理自网络,侵删。

 
//数据异或校验
function BytesXor(buffer:array of byte):Integer;
var
i:integer;
begin
Result:=$0;
for i:=Low(buffer) to High(buffer) do
begin
result:=result xor buffer[i];
end;
end;

相关阅读 >>

Delphi 从twebbrowser webbrowser得到全部html源码

Delphi idhttpserver的使用方法

Delphi closefile 关闭文件

Delphi程序在每个windows 会话中只执行一次

Delphi 获取cpuid的函数

Delphi winapi: getparent - 获取指定窗口的父窗口句柄

Delphi 精要-读书笔记(内存分配释放)

Delphi 防止程序重复打开运行

Delphi access 加密方法

Delphi中使用goo.gl(google的缩短url服务)api

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...