diff options
Diffstat (limited to '')
-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) {} |