MCPcopy Create free account
hub / github.com/andrivet/ADVobfuscator / ObfuscatedString

Method ObfuscatedString

include/advobfuscator/string.h:45–48  ·  view source on GitHub ↗

Construct an obfuscated string of characters. \param str The array of characters (including the null terminal byte).

Source from the content-addressed store, hash-verified

43 /// Construct an obfuscated string of characters.
44 /// \param str The array of characters (including the null terminal byte).
45 consteval ObfuscatedString(char const (&str)[N]) noexcept
46 : algos_{generate_sum(str)} {
47 encode(str);
48 };
49
50 /// Construct an obfuscated string of characters.
51 /// \param str The array of characters (including the null terminal byte).

Callers

nothing calls this directly

Calls 1

generate_sumFunction · 0.85

Tested by

no test coverage detected