JAVA异或校验算法
2016-12-12 本文已影响0人
AlexFelix
public static boolean getXOR(byte[]datas,bytecheckData){
int result=0;
for (int i = 0; i <datas.length; i++) {
result= result^ByteToInt(datas[i]);
}
int data= ByteToInt(checkData);
if (result==data){
return true;
}
return false;
}
不要问我ByteToInt怎么写
```