23 releases

0.8.0 Sep 20, 2022
0.7.0 Jan 5, 2021
0.6.1 Apr 27, 2020
0.6.0 Mar 16, 2020
0.1.0 Dec 29, 2017

#210 in Rust patterns

Download history 166824/week @ 2024-07-20 161820/week @ 2024-07-27 167824/week @ 2024-08-03 183622/week @ 2024-08-10 163337/week @ 2024-08-17 171936/week @ 2024-08-24 179148/week @ 2024-08-31 184335/week @ 2024-09-07 174681/week @ 2024-09-14 180475/week @ 2024-09-21 185214/week @ 2024-09-28 208433/week @ 2024-10-05 196134/week @ 2024-10-12 207728/week @ 2024-10-19 188712/week @ 2024-10-26 183404/week @ 2024-11-02

807,468 downloads per month
Used in 2,307 crates (27 directly)

MIT/Apache

38KB
845 lines

Fixed Hash

Provides macros to construct custom fixed-size hash types.

Examples

Simple 256 bit (32 bytes) hash type.

use fixed_hash::construct_fixed_hash;

construct_fixed_hash! {
    /// My 256 bit hash type.
    pub struct H256(32);
}

Opt-in to add conversions between differently sized hashes.

construct_fixed_hash!{ struct H256(32); }
construct_fixed_hash!{ struct H160(20); }
// auto-implement conversions between H256 and H160
impl_fixed_hash_conversions!(H256, H160);
// now use the generated conversions
assert_eq!(H256::from(H160::zero()), H256::zero());
assert_eq!(H160::from(H256::zero()), H160::zero());

It is possible to add attributes to your types, for example to make them serializable.

construct_fixed_hash!{
    /// My serializable hash type.
    #[cfg_attr(feature = "serialize", derive(Serialize, Deserialize))]
    struct H160(20);
}

Features

By default this is an standard library depending crate.
For a #[no_std] environment use it as follows:

fixed-hash = { version = "0.3", default-features = false }

Available Features

  • std: Use the standard library instead of the core library.
    • Using this feature enables the following features
      • rustc-hex/std
      • rand/std
      • byteorder/std
    • Enabled by default.
  • libc: Use libc for implementations of PartialEq and Ord.
    • Enabled by default.
  • rand: Provide API based on the rand crate.
    • Enabled by default.
  • byteorder: Provide API based on the byteorder crate.
    • Enabled by default.
  • quickcheck: Provide quickcheck implementation for hash types.
    • Disabled by default.
  • api-dummy: Generate a dummy hash type for API documentation.
    • Enabled by default at docs.rs
  • arbitrary: Allow for creation of a hash from random unstructured input.
    • Disabled by default.

Dependencies

~0.4–0.9MB
~15K SLoC