Hey guys I'm really new to C++ so please be patient. I think I have a really easy problem to solve for you. I need to compile a C++ file in a virtual machine for university. My Input:
g++ decrypt_me.cpp
I get the following errors:
undefined reference to `SHA1_Init'
undefined reference to `SHA1_Update'
undefined reference to `SHA1_Final'
I know this has something to do with putting -lssl with it, but non of my trys worked so far. Thank you in advance!