Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
#include <openssl/md5.h>
void mMD5(unsigned char * packet, int size) {

    unsigned char* res;

    MD5((unsigned char*)&packet, size, (unsigned char*)&res);

    for(int i=0; i<MD5_DIGEST_LENGTH; i++) {
        printf("%02x", res[i]);
    }
}

I get the error: undefined reference to `MD5'

Can anyone help me?

share|improve this question

1 Answer

up vote 4 down vote accepted

You need to link to the matching library. You should have a file called md5.lib or md5.a or something like that (depending on your OS), and add it to your linker command line (again, depending on your environment).

share|improve this answer
2  
In gcc, it's -lssl -lcrypto. – csl Mar 20 '12 at 19:26
thanks ! it work't! But, do you know how to put set the link options in eclipse? – Bewn Mar 20 '12 at 19:47
I don't really use eclipse, but I imagine you should find it somewhere in the workspace's linker options (or something like that). – Asaf Mar 20 '12 at 20:04
Many thanks my friend! I found how to do it in eclipse to. :) – Bewn Mar 21 '12 at 21:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.