Staging
v0.5.1
Revision 4384e3cde2ce8ecd194202e171ae16333d241326 authored by Junio C Hamano on 04 August 2017, 16:31:12 UTC, committed by Junio C Hamano on 04 August 2017, 16:31:12 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 62ebe03
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)
#ifdef DC_SHA1_SUBMODULE
#include "sha1collisiondetection/lib/sha1.h"
#else
#include "sha1dc/sha1.h"
#endif
#else /* SHA1_BLK */
#include "block-sha1/sha1.h"
#endif

#endif
back to top