/**
 * @module
 *
 * CRC-8/DVB-S2
 */

import { crc, type CrcInterface } from '../crc.js';

/**
 * CRC-8/DVB-S2
 */
export default crc(
	8,
	0xd5,
	false,
	0x00,
	false,
	0x00,
) as CrcInterface<number>;
