mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-29 10:26:36 +01:00
18 lines
287 B
C
18 lines
287 B
C
// as copied from https://github.com/Zunawe/md5-c
|
|
|
|
#ifndef MD5_H
|
|
#define MD5_H
|
|
|
|
#ifdef NO_NATIVE_MD5SDUM
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct _MD5Result {
|
|
char output[33];
|
|
} MD5Result;
|
|
|
|
void calcMD5Sum( MD5Result* out, uint8_t* data, size_t len );
|
|
#endif
|
|
|
|
#endif
|