tconfig.h - dedup - deduplicating backup program
(HTM) git clone git://git.z3bra.org/dedup.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
tconfig.h (328B)
---
1 #define ARCHIVEPATH "archive"
2 #define STORAGEPATH "storage"
3 #define MDSIZE 32
4 #define KEYSIZE 32 /* should match crypto_aead_xchacha20poly1305_ietf_KEYBYTES */
5 #define BSIZEMIN ((size_t)524288)
6 #define BSIZEAVG ((size_t)2097152)
7 #define BSIZEMAX ((size_t)8388608)
8 #define HMASKBITS (BSIZEAVG - 1)
9 #define WINSIZE ((size_t)4095)