[edit]PROBLEM SOLVED - thanks chown33[/edit]
I am trying to write a foundation tool using openssl's rc4 cryptography.
I have included libssl.0.9.8.dylib in the project and use a
to call the header file that I need. However whenever I try to build, I get an error
. What am I missing, to get use of these functions?
Thanks,
W
I am trying to write a foundation tool using openssl's rc4 cryptography.
I have included libssl.0.9.8.dylib in the project and use a
Code:
#include <openssl/rc4.h>
Code:
Undefined symbols:
"_RC4_set_key", referenced from:
_main in sslrc4.o
"_RC4", referenced from:
_main in sslrc4.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
Thanks,
W