dearxan 0.5.5

Static analyzer and patcher for the Arxan anti-debug/DRM as found in FromSoftware titles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(unsafe_op_in_unsafe_fn)]
#![doc = include_str!("../README.md")]

#[cfg(feature = "disabler")]
pub mod disabler;

pub mod analysis;
pub mod patch;

/// Re-export of the `iced_x86` crate.
#[cfg(feature = "internal_api")]
pub use iced_x86;
#[cfg(feature = "internal_api")]
/// Re-export of the `pelite` crate.
pub use pelite;