repo.or.cz
/
git
/
raj.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'sb/submodule-short-status'
[git/raj.git]
/
hash.h
blob
a11fc9233fc9bb7d876e2e97a1a149260d7a633c
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>
10
#elif defined(SHA1_DC)
11
#include
"sha1dc/sha1.h"
12
#else
/* SHA1_BLK */
13
#include
"block-sha1/sha1.h"
14
#endif
15
16
#endif