BinaryByter
oh
BinaryByter
well look at the code
BinaryByter
refactor the code
DaviC
If it works like you say i will be able to do instruction [26] to access to opcode at bit 26 for example?
BinaryByter
yea
BinaryByter
i'm sorry
BinaryByter
@qneko
BinaryByter
you were right
BinaryByter
OOP in C++ becomes super messy
pk
/
olli
If it works like you say i will be able to do instruction [26] to access to opcode at bit 26 for example?
you cannot access single bits only. You need to read at least a char and extract the bit you are looking for. So if you are interested in bit 26 of an uint32_t you would need to (v >> 0x19U) & 0x1U
klimi
Yo admin
Ибраги́м
klimi
GN admins
olli
The program is not well-formed but the compiler is not required to issue diagnostics. Which is quite interesting because there is no way to be sure your code is well-formed even if it compiles C++ is awesome :D
Anonymous
Does anyone know any good encryption library in C?
Anonymous
I read that OpenSSL is a good one. What do you think?
olli
I read that OpenSSL is a good one. What do you think?
you can go with OpenSSL as well, however several vulnerabilities also affected OpenSSL. If you can, I would prefer LibreSSL over OpenSSL anytime.
Anonymous
Mmh. Which one would you recommend between OpenSSL, LibreSSL and the one you said before?
olli
Mmh. Which one would you recommend between OpenSSL, LibreSSL and the one you said before?
If you have seen / are somewhat familiar with OpenSSL I would recommend LibreSSL.
Anonymous
I'm not familiar with any of those. I just need to choose one and learn it.
Anonymous
This is why I'm asking
olli
then go with LibreSSL
Anonymous
Why do you think that LibreSSL is better than OpenSSL?
olli
Initially LibreSSL is a fork of OpenSSL with the aim to modernize, refactor and secure the project. As a result several critical vulnerabilities affected OpenSSL but none of them affected LibreSSL. The removed a lot of useless code and added some security features by default.
olli
http://www.libressl.org/goals.html https://en.wikipedia.org/wiki/LibreSSL
Anonymous
Interesting. If I wanted to use AES 256 encryption , could I use both , right?
olli
Yes, in terms of functionality OpenSSL and LibreSSL were quite similar (at least the last time i checked)
Anonymous
Which encryption library could I use for code obfuscation instead?
olli
Which encryption library could I use for code obfuscation instead?
What are you trying to do? Obfuscating your source code? >> why? using C or C++ you are going to compile it anyway. Obfuscating your code might not change the compiled binary at all
Anonymous
is it useless?
Anonymous
oh yeah I guess
BinaryByter
I can't believe there are still people who try to obfuzcate their binary by encrypting and derrypting functions
BinaryByter
Like
BinaryByter
Dafaq
Anonymous
lol dumb question xD
BinaryByter
A stripped binary wont be easily reversable
Anonymous
I can't believe there are still people who try to obfuzcate their binary by encrypting and derrypting functions
i can't believe there are people that answer without being not even helpful but making dumb comments.
BinaryByter
Denuvo?
Denuvo?
olli
Denuvo?
https://denuvo.com/ They make a lot of money with obfuscating binaries to prevent piracy
Anonymous
lol good
-
Hi
-
Do you guys know about Java?
Satan
Yes
Satan
Many of us would
Satan
But you should ask any Java related question in the Java group
Satan
This one is reserved only for questions on C & C++
Nicks
Hello
BinaryByter
Do you guys know about Java?
/warn not c++ related
-
Lol
Anonymous
Anybody here studies in lvy League school 🤔?
Anonymous
Lol
Hi ❤️
BinaryByter
Yes me
you study in india, but that's `OT
Anonymous
you study in india, but that's `OT
I never even visit India😂😂😂
BinaryByter
oh
BinaryByter
to those who have used std::regex already:
BinaryByter
why does EXACTLY this regex but not the others fail?
BinaryByter
with that regex commented out:
BinaryByter
with it being active
BinaryByter
wait + needs to be escaped
BinaryByter
🤦‍♂️
Anonymous
😂
Stanislav
to those who have used std::regex already:
text = std::regex_replace(text, std::regex("%20|\\+"), " ");
BinaryByter
Oh yea!
BinaryByter
thanks :D
BinaryByter
or do you know a better algorithm to replace string-escapes in browser urls?
BinaryByter
I'm currently having to do a lookup with regexes
BinaryByter
and that sucks balsl
Anonymous
Trie
Anonymous
It fast
BinaryByter
what?