Skip to content

Commit 86cfd61

Browse files
avargitster
authored andcommitted
sha1dc: optionally use sha1collisiondetection as a submodule
Add an option to use the sha1collisiondetection library from the submodule in sha1collisiondetection/ instead of in the copy in the sha1dc/ directory. This allows us to try out the submodule in sha1collisiondetection without breaking the build for anyone who's not expecting them as we work out any kinks. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 9936c1b commit 86cfd61

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

.gitmodules

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "sha1collisiondetection"]
2+
path = sha1collisiondetection
3+
url = https://github.com/cr-marcstevens/sha1collisiondetection.git
4+
branch = master

Makefile

+12
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,12 @@ all::
144144
# algorithm. This is slower, but may detect attempted collision attacks.
145145
# Takes priority over other *_SHA1 knobs.
146146
#
147+
# Define DC_SHA1_SUBMODULE in addition to DC_SHA1 to use the
148+
# sha1collisiondetection shipped as a submodule instead of the
149+
# non-submodule copy in sha1dc/. This is an experimental option used
150+
# by the git project to migrate to using sha1collisiondetection as a
151+
# submodule.
152+
#
147153
# Define OPENSSL_SHA1 environment variable when running make to link
148154
# with the SHA1 routine from openssl library.
149155
#
@@ -1412,8 +1418,14 @@ ifdef APPLE_COMMON_CRYPTO
14121418
BASIC_CFLAGS += -DSHA1_APPLE
14131419
else
14141420
DC_SHA1 := YesPlease
1421+
ifdef DC_SHA1_SUBMODULE
1422+
LIB_OBJS += sha1collisiondetection/lib/sha1.o
1423+
LIB_OBJS += sha1collisiondetection/lib/ubc_check.o
1424+
BASIC_CFLAGS += -DDC_SHA1_SUBMODULE
1425+
else
14151426
LIB_OBJS += sha1dc/sha1.o
14161427
LIB_OBJS += sha1dc/ubc_check.o
1428+
endif
14171429
BASIC_CFLAGS += \
14181430
-DSHA1_DC \
14191431
-DSHA1DC_NO_STANDARD_INCLUDES \

hash.h

+4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
#elif defined(SHA1_OPENSSL)
99
#include <openssl/sha.h>
1010
#elif defined(SHA1_DC)
11+
#ifdef DC_SHA1_SUBMODULE
12+
#include "sha1collisiondetection/lib/sha1.h"
13+
#else
1114
#include "sha1dc/sha1.h"
15+
#endif
1216
#else /* SHA1_BLK */
1317
#include "block-sha1/sha1.h"
1418
#endif

sha1collisiondetection

Submodule sha1collisiondetection added at 19d97bf

0 commit comments

Comments
 (0)