Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hash.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/hash.h
blob: f0d9ddd0c2c3aade692eaf41b6aa7c8fb5f55ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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>
#else /* SHA1_BLK */
#include "block-sha1/sha1.h"
#endif

#endif