int crc8DvbS2(List<int> input) { int crc = 0xFF; for (int data in input) { crc = crc8DvbS2Byte(crc, data); } return crc; }