From dc22658993ae658bca4ed8bae0e4fcb219059de4 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Mon, 26 Nov 2018 17:38:43 +0330 Subject: introducing cgrep, a new addition to the mutator family. updated the readme for bruiser. some minor changes to the wasm setter test script. things look more or less fine. i still need to add a repackage function to faultreiber. --- obfuscator/README.md | 1 + obfuscator/obfuscator.cpp | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'obfuscator') diff --git a/obfuscator/README.md b/obfuscator/README.md index 5ab0937..31492d3 100644 --- a/obfuscator/README.md +++ b/obfuscator/README.md @@ -1,6 +1,7 @@ # obfuscator obfuscator is a C/C++ source-code obfuscation tool.
+obfuscator can use SHAKE128 and SHAKE256 to generate hash digests.
## Status You can find a list of the implemented features and the ones that will be implemented below.
diff --git a/obfuscator/obfuscator.cpp b/obfuscator/obfuscator.cpp index b56ded9..4ea03e1 100644 --- a/obfuscator/obfuscator.cpp +++ b/obfuscator/obfuscator.cpp @@ -399,8 +399,7 @@ class ClassDecl : public MatchFinder::MatchCallback { /** * @brief PPCallbacks for replacing Macro identifiers with their hash digest Along with changing the Header filenames. */ -class PPInclusion : public PPCallbacks -{ +class PPInclusion : public PPCallbacks { public: explicit PPInclusion (SourceManager *SM, Rewriter *Rewrite) : SM(*SM), Rewrite(*Rewrite) {} -- cgit v1.2.3