Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 232 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 232 Bytes

obfustring

A simple compile-time string obfuscation using xor

usage

  #include "obfustring.hpp"
    
  int main()
  {
      auto a = obf("String A");
      auto b = obf("String B");
      auto c = obf("String C");
  }