Git fork
at reftables-rust 27 lines 723 B view raw
1/* Plumbing with collition-detecting SHA1 code */ 2 3#ifdef DC_SHA1_EXTERNAL 4#include <sha1dc/sha1.h> 5#elif defined(DC_SHA1_SUBMODULE) 6#include "sha1collisiondetection/lib/sha1.h" 7#else 8#include "sha1dc/sha1.h" 9#endif 10 11#ifdef DC_SHA1_EXTERNAL 12void git_SHA1DCInit(SHA1_CTX *); 13#else 14#define git_SHA1DCInit SHA1DCInit 15#endif 16 17void git_SHA1DCFinal(unsigned char [20], SHA1_CTX *); 18void git_SHA1DCUpdate(SHA1_CTX *ctx, const void *data, unsigned long len); 19 20#define platform_SHA_IS_SHA1DC /* used by "test-tool sha1-is-sha1dc" */ 21 22#ifndef platform_SHA_CTX 23#define platform_SHA_CTX SHA1_CTX 24#define platform_SHA1_Init git_SHA1DCInit 25#define platform_SHA1_Update git_SHA1DCUpdate 26#define platform_SHA1_Final git_SHA1DCFinal 27#endif