Skip to main content

MaskedPattern

Struct MaskedPattern 

Source
pub struct MaskedPattern<'a> { /* private fields */ }
Expand description

A byte pattern with a wildcard mask In the mask, 1 means the byte must match, and 0 means it’s a wildcard.

§Example

use azathoth_utils::psearch::{MaskedPattern, Searcher};

fn main() {
    let memory_region = b"deadbeef_and_more_deadbeef_and_the_final_deadbeef";
    let mpattern = MaskedPattern::new(b"deadbeef", &[1, 0, 0, 1, 0, 0, 0, 1]).unwrap();
    let mut msearcher = Searcher::new(mpattern).unwrap();
    let offsets: Vec<_> = msearcher.search_all(memory_region).collect();
    println!("Found offsets: {:?}", offsets);
}

Implementations§

Source§

impl<'a> MaskedPattern<'a>

Source

pub fn new(pattern: &'a [u8], mask: &'a [u8]) -> AzUtilResult<Self>

Creates a new masked pattern object

Trait Implementations§

Source§

impl<'a> Pattern for MaskedPattern<'a>

Source§

fn matches(&self, window: &[u8]) -> bool

Returns true if the pattern matches the given window of bytes
Source§

fn len(&self) -> usize

Returns the length of the pattern
Source§

fn is_empty(&self) -> bool

Checks if the pattern is empty (has a length of 0)

Auto Trait Implementations§

§

impl<'a> Freeze for MaskedPattern<'a>

§

impl<'a> RefUnwindSafe for MaskedPattern<'a>

§

impl<'a> Send for MaskedPattern<'a>

§

impl<'a> Sync for MaskedPattern<'a>

§

impl<'a> Unpin for MaskedPattern<'a>

§

impl<'a> UnsafeUnpin for MaskedPattern<'a>

§

impl<'a> UnwindSafe for MaskedPattern<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.