NO

Author Topic: MD5 Include ?  (Read 2830 times)

mactep

  • Guest
MD5 Include ?
« on: May 08, 2016, 05:27:06 PM »
Hello,
i just started c come weeks ago, now i need some help.

i Wanted to Test my Wifi Security with this Code : https://haxx.in/upc_keys.c but it req. MD5.H
How Can i Include it to PellesC ?
Maybe with this : http://www.pellesc.de/source_start.php?file=md5.zip. If yes, please Help me how to do it.


Thanks a lot .
Mike

Offline Bitbeisser

  • Global Moderator
  • Member
  • *****
  • Posts: 772
Re: MD5 Include ?
« Reply #1 on: May 08, 2016, 08:20:52 PM »
Hello,
i just started c come weeks ago, now i need some help.

i Wanted to Test my Wifi Security with this Code : https://haxx.in/upc_keys.c but it req. MD5.H
How Can i Include it to PellesC ?
Maybe with this : http://www.pellesc.de/source_start.php?file=md5.zip. If yes, please Help me how to do it.


Thanks a lot .
Mike
Well, you should get the necessary include file from the same location where you got the source .c file from. Apprently, it comes from some OpenSSL package (hence the openssl path in the include statement).
Unfortunately, that "haxx.in" site is playing tricks I am not willing to adher to, so you might check the same place you got that .c file from.
Beside that, all you have to do is put the .h file in the folder of your .c file (if you are just using it in this project), and include it using the #include "xyz.h" syntax (in contrast to include files in the IDE's general include path, which are include using the #include <xyz.h> syntax).

Ralf