Expand description
This module defines the Preprocessor
trait, which allows for generalized data to be created
about BinaryObject
s prior to being run through the ScanModule
s to avoid duplicate
processing. For more information on how to contribute your own preprocessor, see
docs/contributing/PREPROCESSORS.md
.
Traitsยง
- Preprocessor
- A trait that defines the necessary functions of a
Preprocessor
. APreprocessor
is a modular component that has no dependencies on other preprocessors. It creates a HashMap ofString
s mapped to otherString
s that can then be accessed by the scan modules. For more information on how to contribute your own preprocessor, seedocs/contributing/PREPROCESSORS.md
.