Revision 217f2767cbcb562872437eed4dec62e00846d90c authored by Junio C Hamano on 05 October 2017, 04:49:07 UTC, committed by Junio C Hamano on 05 October 2017, 04:49:07 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent af66399
Raw File
hash.h
#ifndef HASH_H
#define HASH_H

#if defined(SHA1_PPC)
#include "ppc/sha1.h"
#elif defined(SHA1_APPLE)
#include <CommonCrypto/CommonDigest.h>
#elif defined(SHA1_OPENSSL)
#include <openssl/sha.h>
#elif defined(SHA1_DC)
#include "sha1dc_git.h"
#else /* SHA1_BLK */
#include "block-sha1/sha1.h"
#endif

#endif
back to top