summaryrefslogtreecommitdiff
path: root/sha1-file.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2018-11-14 04:09:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-14 07:54:52 (GMT)
commita2ce0a752600a44979da94b19aa1b367c6850bd7 (patch)
tree8053b48486e56cd2719508fa4f996e22997d989f /sha1-file.c
parent50c817e0c02a133a1615ba32971fd5f6649c894f (diff)
downloadgit-a2ce0a752600a44979da94b19aa1b367c6850bd7.zip
git-a2ce0a752600a44979da94b19aa1b367c6850bd7.tar.gz
git-a2ce0a752600a44979da94b19aa1b367c6850bd7.tar.bz2
sha1-file: add a constant for hash block size
There is one place we need the hash algorithm block size: the HMAC code for push certs. Expose this constant in struct git_hash_algo and expose values for SHA-1 and for the largest value of any hash. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1-file.c')
-rw-r--r--sha1-file.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sha1-file.c b/sha1-file.c
index 3a75d51..9aadaf0 100644
--- a/sha1-file.c
+++ b/sha1-file.c
@@ -90,6 +90,7 @@ const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
0x00000000,
0,
0,
+ 0,
git_hash_unknown_init,
git_hash_unknown_update,
git_hash_unknown_final,
@@ -102,6 +103,7 @@ const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
0x73686131,
GIT_SHA1_RAWSZ,
GIT_SHA1_HEXSZ,
+ GIT_SHA1_BLKSZ,
git_hash_sha1_init,
git_hash_sha1_update,
git_hash_sha1_final,