HSH

Quantum-Resistant Cryptographic Hash Library for Password Hashing and Verification in Rust đŸĻ€

Made With Rust Crates.io Lib.rs Docs.rs License Codecov

divider

Welcome to HSH 👋

HSH Banner

Website â€ĸ Documentation â€ĸ Report Bug â€ĸ Request Feature â€ĸ Contributing Guidelines

Overview 📖

The Hash (HSH) library is a cryptographic hash library for password hashing and verification in Rust, based on the argon2rs crate.

This library is designed to provide robust security for passwords, utilizing the latest advancements in quantum-resistant cryptography.

It is based on the argon2rs crate. The library implements a struct named Hash that provides various methods for password hash generation, retrieval, and verification.

Features ✨

Hash Struct

The Hash struct has three fields:

Hash Methods

The Hash structure provides the following methods for password hashing and verification:

Traits

The Hash struct also implements the following traits:

Macros

The library also provides several macros for common operations on the Hash struct:

Security and Performance

It is important to note that the library uses the argon2rs crate for password hashing, which is a secure and quantum-resistant password hashing library.

Installation đŸ“Ļ

It takes just a few minutes to get up and running with hsh.

Requirements

hsh requires Rust 1.67.0 or later.

Documentation

ℹī¸ Info: Please check out our website for more information and find our documentation on docs.rs, lib.rs and crates.io.

Usage 📖

To use hsh in your project, add the following to your Cargo.toml file:

toml [dependencies] hsh = "0.0.2"

Add the following to your main.rs file:

rust extern crate hsh; use hsh::*;

then you can use the functions in your application code.

Examples

HRC comes with a set of examples that you can use to get started. The examples are located in the examples directory of the project. To run the examples, clone the repository and run the following command in your terminal from the project root directory.

shell cargo run --example hsh

Semantic Versioning Policy đŸšĨ

For transparency into our release cycle and in striving to maintain backward compatibility, QRC follows semantic versioning.

License 📝

The project is licensed under the terms of both the MIT license and the Apache License (Version 2.0).

Contribution 🤝

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

divider

Acknowledgements 💙

A big thank you to all the awesome contributors of Mini Functions for their help and support.

And a special thank you goes to the Rust Reddit community for providing a lot of useful suggestions on how to improve this project.