]> git.ipfire.org Git - thirdparty/git.git/blame - hash.h
setup: expose enumerated repo info
[thirdparty/git.git] / hash.h
CommitLineData
f18f816c 1#ifndef HASH_H
2#define HASH_H
3
4#if defined(SHA1_PPC)
5#include "ppc/sha1.h"
6#elif defined(SHA1_APPLE)
7#include <CommonCrypto/CommonDigest.h>
8#elif defined(SHA1_OPENSSL)
9#include <openssl/sha.h>
8325e43b 10#elif defined(SHA1_DC)
36f048c5 11#include "sha1dc_git.h"
f18f816c 12#else /* SHA1_BLK */
13#include "block-sha1/sha1.h"
14#endif
15
16#endif