ХакерДом: IlyaZelenchuk

Contact: ilya [YouKnowWhat] hackerdom.ru

Linux, Kernel, Firewall

#include <stdio.h>

#include <stdlib.h>

#include <openssl/md5.h>

int main() {

int i;

MD5_CTX md5handler;

unsigned char md5digest[MD5_DIGEST_LENGTH];

MD5(«0123456789»,10, md5digest);

for (i=0;i<MD5_DIGEST_LENGTH;i++) {

printf("%02x",md5digest[i]);

};

printf("\n");

return 0;

};