Skip to main content

capsule_lib/
crc.rs

1// SPDX-FileCopyrightText: 2026 Alexander R. Croft
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4pub fn compute_crc32_iso_hdlc(body: &[u8]) -> u32 {
5    crc32fast::hash(body)
6}