tags:

views:

27

answers:

2

I have openssl directory for whole openssl code. It has some folder hierarchy. I want to use for example RSA algorithm in openssl, how can I include open-sll in my project?

If I just include that directory, program cannot find all files properly. Always error about cannot find some definition or something like that. Wish I expressed it clearly. Thanks!

A: 

gcc -lssl -lcrypto ... ?

Jorge Niedbalski R.