Hexagex

Hexagexes are regexes using hexadecimals and bits for matching binary data.

The syntax is mostly the same as in the regex crate, but the literals have been replaced: * 0-9, a-f: 4-bits sequences interpreted as base 16 numbers * .: 4-bit wildcard * O, I: 1-bit value corresponding to 0 and 1 * _: 1-bit wildcard * ^, $: these match the start and end of the text, not of the line * \t: this is an escape to interprete the content immediately after it into a non-hexagex regular regex

A hexagex binary can be compiled with cargo build that allows one to find matches with hexagex [exp] [file].

Examples