I got a problem of linking an OpenSSL library into an existing project. Where I do get it wrong?
Below are the steps I have followed.
I have downloaded the S
You need to add the flag -lssl and -lcrypto in your makefile'
-lssl
-lcrypto
For example:
gcc somefile.c -o someprogram -lssl -lcrypto