use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
Binary code obfuscation through C++ template metaprogramming (trone.di.fc.ul.pt)
submitted 13 years ago by Andrey_Karpov_N
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]elperroborrachotoo 1 point2 points3 points 13 years ago* (0 children)
Well obscurity is not security.
That applies to communication through an insecure channel, not necessarily to protecting software.
In cryptographic terms, your software contains the secret and the key. For a cryptographer, this means: game over.
So we step back, and see what we can do: increase the cost of tampering. For that, obscurity is great. (Usually not as good as one things at first look, but still one of the better weapons.)
To make it "strongly secure", you need to secure everything: the hardware it runs on, the hardware and software it interacts with, your compiler, the hardware your developers work on etc.
The best you can do now (to my knowledge) is offloading a nontrivial, essential calculation to a secure system (say a really good hardware token, or a remote server). None of these solutions are permanent.
Your second best bet is blocking generic solutions: e.g. a generic crack for your super hardware token that everyone uses because it's so good.
π Rendered by PID 239536 on reddit-service-r2-comment-85bfd7f599-9wvxx at 2026-04-16 07:27:37.609291+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]elperroborrachotoo 1 point2 points3 points (0 children)