symphonia_core/checksum/mod.rs
1// Symphonia
2// Copyright (c) 2019-2022 The Project Symphonia Developers.
3//
4// This Source Code Form is subject to the terms of the Mozilla Public
5// License, v. 2.0. If a copy of the MPL was not distributed with this
6// file, You can obtain one at https://mozilla.org/MPL/2.0/.
7
8//! The `checksum` module provides implementations of common error-detecting codes and hashing
9//! algorithms.
10
11mod crc16;
12mod crc32;
13mod crc8;
14mod md5;
15
16pub use crc16::{Crc16Ansi, Crc16AnsiLe};
17pub use crc32::Crc32;
18pub use crc8::Crc8Ccitt;
19pub use md5::Md5;