Skip to content

Commit 4c61a1d

Browse files
ttaylorrgitster
authored andcommitted
sha1: do not redefine platform_SHA_CTX and friends
Our in-tree SHA-1 wrappers all define platform_SHA_CTX and related macros to point at the opaque "context" type, init, update, and similar functions for each specific implementation. In hash.h, we use these platform_ variables to set up the function pointers for, e.g., the_hash_algo->init_fn(), etc. But while these header files have a header-specific macro that prevents them declaring their structs / functions multiple times, they unconditionally define the platform variables, making it impossible to load multiple SHA-1 implementations at once. As a prerequisite for loading a separate SHA-1 implementation for non-cryptographic uses, only define the platform_ variables if they have not already been defined. Signed-off-by: Taylor Blau <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c177d3d commit 4c61a1d

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

block-sha1/sha1.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ void blk_SHA1_Init(blk_SHA_CTX *ctx);
1616
void blk_SHA1_Update(blk_SHA_CTX *ctx, const void *dataIn, size_t len);
1717
void blk_SHA1_Final(unsigned char hashout[20], blk_SHA_CTX *ctx);
1818

19+
#ifndef platform_SHA_CTX
1920
#define platform_SHA_CTX blk_SHA_CTX
2021
#define platform_SHA1_Init blk_SHA1_Init
2122
#define platform_SHA1_Update blk_SHA1_Update
2223
#define platform_SHA1_Final blk_SHA1_Final
24+
#endif

sha1/openssl.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ static inline void openssl_SHA1_Clone(struct openssl_SHA1_CTX *dst,
4040
EVP_MD_CTX_copy_ex(dst->ectx, src->ectx);
4141
}
4242

43+
#ifndef platform_SHA_CTX
4344
#define platform_SHA_CTX openssl_SHA1_CTX
4445
#define platform_SHA1_Init openssl_SHA1_Init
4546
#define platform_SHA1_Clone openssl_SHA1_Clone
4647
#define platform_SHA1_Update openssl_SHA1_Update
4748
#define platform_SHA1_Final openssl_SHA1_Final
49+
#endif
4850

4951
#endif /* SHA1_OPENSSL_H */

sha1dc_git.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ void git_SHA1DCFinal(unsigned char [20], SHA1_CTX *);
1818
void git_SHA1DCUpdate(SHA1_CTX *ctx, const void *data, unsigned long len);
1919

2020
#define platform_SHA_IS_SHA1DC /* used by "test-tool sha1-is-sha1dc" */
21+
22+
#ifndef platform_SHA_CTX
2123
#define platform_SHA_CTX SHA1_CTX
2224
#define platform_SHA1_Init git_SHA1DCInit
2325
#define platform_SHA1_Update git_SHA1DCUpdate
2426
#define platform_SHA1_Final git_SHA1DCFinal
27+
#endif

0 commit comments

Comments
 (0)