-1
我在使用十六進制值的crc-calculator時遇到了一些麻煩。事實上,我有這個很好的代碼可以用ASCII輸入正確計算。Android Java CRC十六進制輸入
但我需要計算的十六進制串「44007A0004 ...」不能轉換爲ASCII字符。如何改變我的函數來計算十六進制輸入字符串crc?
public String CRC_CCITT(int flag,String str) {
int crc = 0x00; // initial value
int polynomial = 0x1021;
byte[] bytes = str.getBytes();
switch(flag){
case 1:
crc=0x00;
break;
case 2:
crc=0xFFFF;
break;
case 3:
crc=0x1D0F;
break;
}
for (int index = 0 ; index< bytes.length; index++) {
byte b = bytes[index];
for (int i = 0; i < 8; i++) {
boolean bit = ((b >> (7-i) & 1) == 1);
boolean c15 = ((crc >> 15 & 1) == 1);
crc <<= 1;
if (c15^bit) crc ^= polynomial;
}
}
crc &= 0xffff;
str = Integer.toHexString(crc);
return str;
}
你知道CRC行爲如何規範要計算更大的輸入? – Robert