config.h - dedup - deduplicating backup program
 (HTM) git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
       config.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)