Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[files]
# Exclude generated output/log files
extend-exclude = ["output", "*.log"]

[default.extend-words]
# function selectors (4-byte hex strings)
ede = "ede"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub mod tui;

use thiserror::Error;

pub const DEFAULT_PASSES: &str = "arithmetic_chain, push_split";
pub const DEFAULT_PASSES: &str = "arithmetic_chain, push_split, mba";

/// Errors that can occur during obfuscation.
#[derive(Debug, Error)]
Expand Down
1 change: 1 addition & 0 deletions crates/cli/src/commands/obfuscate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ pub(crate) fn build_passes(list: &str) -> Result<Vec<Box<dyn Transform>>, Box<dy
"push_split" => {
Ok(Box::new(azoth_transform::push_split::PushSplit::new()) as Box<dyn Transform>)
}
"mba" => Ok(Box::new(azoth_transform::mba::Mba::new()) as Box<dyn Transform>),
"storage_gates" => Ok(
Box::new(azoth_transform::storage_gates::StorageGates::new()) as Box<dyn Transform>,
),
Expand Down
1 change: 1 addition & 0 deletions crates/transforms/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pub mod arithmetic_chain;
pub mod cluster_shuffle;
pub mod function_dispatcher;
pub mod jump_address_transformer;
pub mod mba;
pub mod obfuscator;
pub mod opaque_predicate;
pub mod push_split;
Expand Down
Loading
Loading