#include <sys/types.h>
Go to the source code of this file.
Data Structures | |
struct | MD5Context |
Defines | |
#define | MD5_HASHBYTES 16 |
Typedefs | |
typedef MD5Context | MD5_CTX |
Functions | |
char * | lutil_md5_file (const char *filename, char *buf) |
Compute an md5sum of the given file. | |
char * | lutil_md5_data (const unsigned char *data, unsigned int len, char *buf) |
Compute an md5sum of the given data. |
Compute the md5 sums of files or data, based off code from libmd
Definition in file md5.h.
|
Definition at line 63 of file md5.h. Referenced by MD5End(). |
|
|
|
Compute an md5sum of the given data.
Definition at line 116 of file md5.c. References MD5End(), MD5Init(), and MD5Update(). |
|
Compute an md5sum of the given file.
Definition at line 96 of file md5.c. References MD5End(), MD5Init(), and MD5Update(). Referenced by luau_net_downloadUpdate(). |