hsh 0.0.8

Quantum-Resistant Cryptographic Hash Library for Password Encryption and Verification in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright © 2023-2024 Hash (HSH) library. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! This is the main entry point for the hsh application.
fn main() {
    // Call the `run()` function from the `Hash (HSH)` module.
    if let Err(err) = hsh::run() {
        eprintln!("Error running hsh: {}", err);
        std::process::exit(1);
    }
}