mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-18 06:17:22 -04:00
- Switch .s -> .S to enable the preprocessor. - Move some defines from mdigest.h to md-defines.h. - Tweak the asm file to use md-defines.h. - Add a couple missing .h dependencies in the Makefile.
16 lines
322 B
C
16 lines
322 B
C
/* Keep this simple so both C and ASM can use it */
|
|
|
|
#define MD4_DIGEST_LEN 16
|
|
#define MD5_DIGEST_LEN 16
|
|
#define MAX_DIGEST_LEN MD5_DIGEST_LEN
|
|
|
|
#define CSUM_CHUNK 64
|
|
|
|
#define CSUM_NONE 0
|
|
#define CSUM_MD4_ARCHAIC 1
|
|
#define CSUM_MD4_BUSTED 2
|
|
#define CSUM_MD4_OLD 3
|
|
#define CSUM_MD4 4
|
|
#define CSUM_MD5 5
|
|
#define CSUM_XXH64 6
|