// This file is part of helpers4.
// Copyright (C) 2025 baxyz
// SPDX-License-Identifier: LGPL-3.0-or-later
//! Hexadecimal encoding and decoding with typed errors.
//!
//! Decoding accepts either case and rejects anything that is not pairs of hex digits, so trim
//! whitespace and strip `0x` prefixes before calling it.
pub use decode;
pub use decode_array;
pub use decode_to_slice;
pub use encode;
pub use encode_upper;
pub use DecodeError;