Skip to content

Commit 54c93cb

Browse files
peffgitster
authored andcommitted
test-sha1: add a binary output mode
The test-sha1 helper program will run our internal sha1 routines over its input and output the 40-byte hex sha1. Sometimes, however, it is useful to have the binary 20-byte sha1 (and it's a pain to convert back in the shell). Let's add a "-b" option to output the binary version. Signed-off-by: Jeff King <[email protected]> Acked-by: Nicolas Pitre <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a3bc3d0 commit 54c93cb

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

test-sha1.c

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ int main(int ac, char **av)
55
git_SHA_CTX ctx;
66
unsigned char sha1[20];
77
unsigned bufsz = 8192;
8+
int binary = 0;
89
char *buffer;
910

10-
if (ac == 2)
11-
bufsz = strtoul(av[1], NULL, 10) * 1024 * 1024;
11+
if (ac == 2) {
12+
if (!strcmp(av[1], "-b"))
13+
binary = 1;
14+
else
15+
bufsz = strtoul(av[1], NULL, 10) * 1024 * 1024;
16+
}
1217

1318
if (!bufsz)
1419
bufsz = 8192;
@@ -42,6 +47,10 @@ int main(int ac, char **av)
4247
git_SHA1_Update(&ctx, buffer, this_sz);
4348
}
4449
git_SHA1_Final(sha1, &ctx);
45-
puts(sha1_to_hex(sha1));
50+
51+
if (binary)
52+
fwrite(sha1, 1, 20, stdout);
53+
else
54+
puts(sha1_to_hex(sha1));
4655
exit(0);
4756
}

0 commit comments

Comments
 (0)