Skip to content

Commit

Permalink
Merge pull request #43 from lifo9/lifo/fix-regex-helper-obj-name
Browse files Browse the repository at this point in the history
Fix REGEX_HELPER_OBJ_NAME
  • Loading branch information
techmetx11 authored Dec 16, 2024
2 parents ac0269f + 5eff807 commit 23932bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/consts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub static REGEX_SIGNATURE_FUNCTION: Lazy<Regex> = Lazy::new(|| {
r#")"#
)).unwrap()
});
pub static REGEX_HELPER_OBJ_NAME: &Lazy<Regex> = regex!(";([A-Za-z0-9_\\$]{2,})\\...\\(");
pub static REGEX_HELPER_OBJ_NAME: &Lazy<Regex> = regex!(r"([A-Za-z0-9_\$]{1,})=function\(");

pub static NSIG_FUNCTION_NAME: &str = "decrypt_nsig";
pub static SIG_FUNCTION_NAME: &str = "decrypt_sig";

0 comments on commit 23932bf

Please sign in to comment.