Envoyé par
PRomu@ld
Utilise ceci :
http://www.garret.ru/~baranov/boost_md5/lib/md5/md5.html
Je viens de regarder cette lib en détail, j'ai choppé le header md5.hpp et testé avec leur ligne d'exemple...
1 2 3 4 5 6 7 8 9 10 11 12
| #include <boost/md5.hpp>
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char *argv[])
{
std::cout << boost::md5("message").hex_str_value();
system("PAUSE");
return EXIT_SUCCESS;
} |
Y'a un petit soucis visiblement...
9 C:\Mes documents\Projets applications\MD5 Toolbox\Portage C++\main.cpp 'class boost::md5' has no member named 'hex_str_value'
Partager