blob: 3274d5a00d153a4a6bbd9e0dc67ba7f235eb3a00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef TQTMD5_H
#define TQTMD5_H
#include <tqstring.h>
#include <tqcstring.h>
void qtMD5(const TQByteArray &src, unsigned char *digest);
void qtMD5(const TQCString &src, unsigned char *digest);
TQString qtMD5(const TQByteArray &src);
TQString qtMD5(const TQCString &src);
#endif
|