|
a/libupnpp/md5.cxx |
|
b/libupnpp/md5.cxx |
|
... |
|
... |
25 |
* $FreeBSD: src/lib/libmd/md5c.c,v 1.11 1999/12/29 05:04:20 peter Exp $
|
25 |
* $FreeBSD: src/lib/libmd/md5c.c,v 1.11 1999/12/29 05:04:20 peter Exp $
|
26 |
*
|
26 |
*
|
27 |
* This code is the same as the code published by RSA Inc. It has been
|
27 |
* This code is the same as the code published by RSA Inc. It has been
|
28 |
* edited for clarity and style only.
|
28 |
* edited for clarity and style only.
|
29 |
*/
|
29 |
*/
|
30 |
#include "config.h"
|
30 |
//#include "config.h"
|
31 |
|
31 |
|
32 |
#include <stdio.h>
|
32 |
#include "md5.hxx"
|
33 |
#include <string.h>
|
|
|
34 |
|
33 |
|
35 |
#include <string>
|
34 |
#include <stdio.h> // for sscanf
|
|
|
35 |
#include <string.h> // for memcpy, memset
|
|
|
36 |
#include <string> // for string
|
|
|
37 |
|
36 |
using namespace std;
|
38 |
using namespace std;
|
37 |
|
|
|
38 |
#include "md5.hxx"
|
|
|
39 |
|
39 |
|
40 |
namespace UPnPP {
|
40 |
namespace UPnPP {
|
41 |
|
41 |
|
42 |
typedef unsigned int md5uint32;
|
42 |
typedef unsigned int md5uint32;
|
43 |
|
43 |
|