https://github.com/git/git
Raw File
Tip revision: 4fa66c85f11bc5a541462ca5ae3246aa0ce02e74 authored by Junio C Hamano on 04 May 2017, 07:27:19 UTC
Git 2.13-rc2
Tip revision: 4fa66c8
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/sha1.h"
#else /* SHA1_BLK */
#include "block-sha1/sha1.h"
#endif

#endif
back to top