5 releases (3 breaking)

0.4.0 Jul 1, 2024
0.3.0 Jul 30, 2023
0.2.1 May 4, 2023
0.2.0 Jan 1, 2023
0.1.0 Dec 30, 2022

#300 in Algorithms

Download history 395/week @ 2024-07-27 488/week @ 2024-08-03 197/week @ 2024-08-10 266/week @ 2024-08-17 278/week @ 2024-08-24 332/week @ 2024-08-31 334/week @ 2024-09-07 331/week @ 2024-09-14 574/week @ 2024-09-21 423/week @ 2024-09-28 625/week @ 2024-10-05 586/week @ 2024-10-12 754/week @ 2024-10-19 570/week @ 2024-10-26 516/week @ 2024-11-02 370/week @ 2024-11-09

2,320 downloads per month
Used in boreal

Apache-2.0 OR BSD-3-Clause

505KB
568 lines

TLSH2

Build status Crates.io Documentation

Rust port of the TLSH library. The code is kept close to the original C++ version, to limit bugs and help maintainability

This crate is no_std and different configurations of bucket numbers and checksum length are handled as generics, making every configuration properly optimized.

// The default builder uses 128 buckets and a 1-byte checksum.
// Other builders are also available.
let mut builder = tlsh2::TlshDefaultBuilder::new();
builder.update(b"Sed ut perspiciatis unde omnis iste natus");
builder.update(b"error sit voluptatem accusantium");
let tlsh = builder.build()
    .ok_or_else(|| "could not generate TLSH from payload")?;

// Alternatively, a TLSH object can be generated directly from
// a byte slice.
let tlsh2 = tlsh2::TlshDefaultBuilder::build_from(
    b"odit aut fugit, sed quia consequuntur magni dolores"
).ok_or_else(|| "could not generate TLSH from second payload")?;

// Then, the TLSH object can be used to generated a hash or compute
// distances
assert_eq!(
    tlsh.hash(),
    b"T184A022B383C2A2A20ACB0830880CF0202CCAC080033A023800338\
      A30B0880AA8E0BE38".as_slice(),
);
// The `diff` feature is required for this computation.
assert_eq!(tlsh.diff(&tlsh2, true), 209);

Those configurations are available:

  • 128 buckets and 1-byte checksum (default).
  • 128 buckets and 3-byte checksum.
  • 256 buckets and 1-byte checksum.
  • 256 buckets and 3-byte checksum.
  • 48 buckets and 1-byte checksum.

The fast feature speeds up TLSH generation but adds a 64kB lookup table.

The threaded and private options that exists in the original TLSH version are not yet implemented.

No runtime deps