quickxorhash 0.1.0

Fast implementation of QuickXorHash in Rust.
Documentation
  • Coverage
  • 16.67%
    1 out of 6 items documented1 out of 5 items with examples
  • Size
  • Source code size: 27.59 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 292.84 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • guyru/quickxorhash
    1 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • guyru

QuickXorHash

Fast implementation of QuickXorHash in pure Rust.

A quick, simple non-cryptographic hash algorithm that works by XORing the bytes in a circular-shifting fashion.

Examples

use quickxorhash::QuickXorHash;

//! let mut qx = QuickXorHash::new();
//! qx.update(b"hello world");
//! assert_eq!(qx.finalize(), [104, 40, 3, 27, 216, 240, 6, 16, 220, 225, 13, 114, 107, 3, 25, 0, 0, 0, 0, 0]);

License

Licensed under either of

at your option.

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.

Authors