![]() |
|
#1
|
|||
|
|||
|
Tiny Obfuscate [C++]
A tool for strings obfuscation tool in C++
When you need encrypt/obfuscate strings in your program so that they don't just show up with a strings or hex tool when your executable is examined, this tool can be useful. See Code Project article: https://www.codeproject.com/Articles/1210398/Small-String-Obfuscator Features Obfuscate strings Haephrati c++ MFC Encryption |
| The Following 5 Users Say Thank You to CarrotStickCam For This Useful Post: | ||
|
#2
|
||||
|
||||
|
With C++ "constexpr" feature, we can do compile-time obfuscation.
But usually the decryption at runtime is not thread-safe, so lock/synchronization must be used at runtime. https://github.com/adamyaxley/Obfuscate https://github.com/Snowapril/String-Obfuscator-In-Compile-Time
__________________
AKA Solomon/blowfish. |
| The Following User Gave Reputation+1 to WhoCares For This Useful Post: | ||
user1 (11-09-2022) | ||
|
#3
|
|||
|
|||
|
Quote:
Based language. |
|
#4
|
||||
|
||||
|
for example?
BTW, you can avoid using C++ features that you are not familiar with.
__________________
AKA Solomon/blowfish. |
|
#5
|
|||
|
|||
|
Yeah, agree! C++ is the most long-lived robust industry standard language used ubiquitous
You could even turn of RTTI and other stuff you don't need in your binary Very curious what C++30 might look like
|
|
#6
|
|||
|
|||
|
Quote:
Quote:
Sure with each ISO C++ release we see improvements in C++'s safety and ergonomics but still not that much of breaking ground improvement that we see in other languages |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Obfuscate code | ragdog | General Discussion | 4 | 12-01-2013 04:05 |
| Tiny question | Kyrios | General Discussion | 6 | 09-21-2004 00:00 |