pub fn extract_strings(
provider: &dyn PhysicalMemoryProvider,
config: &ExtractConfig,
) -> Vec<ClassifiedString>Expand description
Extract strings from a physical memory provider.
Reads 64 KB chunks from each physical range, scanning for ASCII and/or
UTF-16LE printable sequences of at least config.min_length characters.
The returned ClassifiedString values have empty categories — callers
should run a classifier pass afterwards.