diff options
author | bloodstalker <thabogre@gmail.com> | 2018-11-26 14:08:43 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-11-26 14:08:43 +0000 |
commit | dc22658993ae658bca4ed8bae0e4fcb219059de4 (patch) | |
tree | 8641c62b5caf38546e2b984f9e372c165adfb326 /obfuscator | |
parent | lgtm (diff) | |
download | mutator-dc22658993ae658bca4ed8bae0e4fcb219059de4.tar.gz mutator-dc22658993ae658bca4ed8bae0e4fcb219059de4.zip |
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.
Diffstat (limited to 'obfuscator')
-rw-r--r-- | obfuscator/README.md | 1 | ||||
-rw-r--r-- | obfuscator/obfuscator.cpp | 3 |
2 files changed, 2 insertions, 2 deletions
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.<br/> +obfuscator can use SHAKE128 and SHAKE256 to generate hash digests.<br/> ## Status You can find a list of the implemented features and the ones that will be implemented below.<br/> 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) {} |