sha3sum 1.3.2

sha3sum - compute and check SHA3 message digest.
Documentation
/*
 *  This file is part of sha3sum
 *
 *  sha3sum is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  any later version.
 *
 *  sha3sum is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with sha3sum. If not, see <http://www.gnu.org/licenses/>
 */

//! Library facade — re-exports the types and functions used by benchmarks
//! and integration tests.  The actual logic lives in `main.rs` / `wrapper/`.

pub mod wrapper;

/// No-break space separator (`U+00A0`) used between hash and filename in output lines.
pub const NO_BREAK_SPACE: char = '\u{00a0}';

/// How a file is read: byte-stream (`Binary`) or line-by-line (`Text`).
#[derive(PartialEq, Clone, Copy, Debug)]
pub enum Mode {
    Binary,
    Text,
}