I have found an answer to a question on this site, which I have tried to implement from here.
I downloaded and installed openssl from here. I performed each step mentioned within the install text inside the extracted file.
$ ./config $ make $ make test $ make install
These all finished without error. Then when I tried to compile the code on how to generate an SHA hash using the example code from the answered question, I am given the following error:
fatal error: openssl.h: No such file or directory
Do I have to do something more to create the openssl header file, as I thought after installing openssl without any problems it would be automatically created? This is the first time I am adding a library to C, so please excuse any naiveties on my part.
Thanks for reading.