gitextract_9t2uq1pg/ ├── .gitignore ├── .gitmodules ├── 3RD-PARTY.md ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── obfuscator/ │ ├── obfs/ │ │ ├── fsm.hpp │ │ ├── random.hpp │ │ ├── sequence.hpp │ │ └── string.hpp │ └── obfuscator.hpp ├── obfuscator.hpp ├── sample/ │ ├── CMakeLists.txt │ ├── random.cpp │ ├── state_machine.cpp │ └── string_obfs.cpp ├── script/ │ ├── Dockerfile.bionic │ ├── __init__.py │ ├── azure-pipelines-template-mac.yml │ ├── azure-pipelines-template-unix.yml │ ├── azure-pipelines-template-win.yml │ ├── merge.py │ └── string_obfs_tester.py └── test/ ├── CMakeLists.txt ├── impl/ │ ├── fsm.cpp │ ├── random.cpp │ ├── sequence.cpp │ └── string.cpp └── main.cpp