Linus Torvalds | a503121 | 2010-01-21 15:25:19 -0800 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | |
| 3 | const signed char hexval_table[256] = { |
| 4 | -1, -1, -1, -1, -1, -1, -1, -1, /* 00-07 */ |
| 5 | -1, -1, -1, -1, -1, -1, -1, -1, /* 08-0f */ |
| 6 | -1, -1, -1, -1, -1, -1, -1, -1, /* 10-17 */ |
| 7 | -1, -1, -1, -1, -1, -1, -1, -1, /* 18-1f */ |
| 8 | -1, -1, -1, -1, -1, -1, -1, -1, /* 20-27 */ |
| 9 | -1, -1, -1, -1, -1, -1, -1, -1, /* 28-2f */ |
| 10 | 0, 1, 2, 3, 4, 5, 6, 7, /* 30-37 */ |
| 11 | 8, 9, -1, -1, -1, -1, -1, -1, /* 38-3f */ |
| 12 | -1, 10, 11, 12, 13, 14, 15, -1, /* 40-47 */ |
| 13 | -1, -1, -1, -1, -1, -1, -1, -1, /* 48-4f */ |
| 14 | -1, -1, -1, -1, -1, -1, -1, -1, /* 50-57 */ |
| 15 | -1, -1, -1, -1, -1, -1, -1, -1, /* 58-5f */ |
| 16 | -1, 10, 11, 12, 13, 14, 15, -1, /* 60-67 */ |
| 17 | -1, -1, -1, -1, -1, -1, -1, -1, /* 68-67 */ |
| 18 | -1, -1, -1, -1, -1, -1, -1, -1, /* 70-77 */ |
| 19 | -1, -1, -1, -1, -1, -1, -1, -1, /* 78-7f */ |
| 20 | -1, -1, -1, -1, -1, -1, -1, -1, /* 80-87 */ |
| 21 | -1, -1, -1, -1, -1, -1, -1, -1, /* 88-8f */ |
| 22 | -1, -1, -1, -1, -1, -1, -1, -1, /* 90-97 */ |
| 23 | -1, -1, -1, -1, -1, -1, -1, -1, /* 98-9f */ |
| 24 | -1, -1, -1, -1, -1, -1, -1, -1, /* a0-a7 */ |
| 25 | -1, -1, -1, -1, -1, -1, -1, -1, /* a8-af */ |
| 26 | -1, -1, -1, -1, -1, -1, -1, -1, /* b0-b7 */ |
| 27 | -1, -1, -1, -1, -1, -1, -1, -1, /* b8-bf */ |
| 28 | -1, -1, -1, -1, -1, -1, -1, -1, /* c0-c7 */ |
| 29 | -1, -1, -1, -1, -1, -1, -1, -1, /* c8-cf */ |
| 30 | -1, -1, -1, -1, -1, -1, -1, -1, /* d0-d7 */ |
| 31 | -1, -1, -1, -1, -1, -1, -1, -1, /* d8-df */ |
| 32 | -1, -1, -1, -1, -1, -1, -1, -1, /* e0-e7 */ |
| 33 | -1, -1, -1, -1, -1, -1, -1, -1, /* e8-ef */ |
| 34 | -1, -1, -1, -1, -1, -1, -1, -1, /* f0-f7 */ |
| 35 | -1, -1, -1, -1, -1, -1, -1, -1, /* f8-ff */ |
| 36 | }; |
| 37 | |
| 38 | int get_sha1_hex(const char *hex, unsigned char *sha1) |
| 39 | { |
| 40 | int i; |
brian m. carlson | aa1c6fd | 2015-03-13 23:39:28 +0000 | [diff] [blame] | 41 | for (i = 0; i < GIT_SHA1_RAWSZ; i++) { |
René Scharfe | d233097 | 2016-09-03 17:59:20 +0200 | [diff] [blame] | 42 | int val = hex2chr(hex); |
| 43 | if (val < 0) |
Linus Torvalds | a503121 | 2010-01-21 15:25:19 -0800 | [diff] [blame] | 44 | return -1; |
| 45 | *sha1++ = val; |
| 46 | hex += 2; |
| 47 | } |
| 48 | return 0; |
| 49 | } |
| 50 | |
brian m. carlson | aa1c6fd | 2015-03-13 23:39:28 +0000 | [diff] [blame] | 51 | int get_oid_hex(const char *hex, struct object_id *oid) |
| 52 | { |
| 53 | return get_sha1_hex(hex, oid->hash); |
| 54 | } |
| 55 | |
Jeff King | af49c6d | 2015-09-24 17:05:45 -0400 | [diff] [blame] | 56 | char *sha1_to_hex_r(char *buffer, const unsigned char *sha1) |
Linus Torvalds | a503121 | 2010-01-21 15:25:19 -0800 | [diff] [blame] | 57 | { |
Linus Torvalds | a503121 | 2010-01-21 15:25:19 -0800 | [diff] [blame] | 58 | static const char hex[] = "0123456789abcdef"; |
Jeff King | af49c6d | 2015-09-24 17:05:45 -0400 | [diff] [blame] | 59 | char *buf = buffer; |
Linus Torvalds | a503121 | 2010-01-21 15:25:19 -0800 | [diff] [blame] | 60 | int i; |
| 61 | |
brian m. carlson | aa1c6fd | 2015-03-13 23:39:28 +0000 | [diff] [blame] | 62 | for (i = 0; i < GIT_SHA1_RAWSZ; i++) { |
Linus Torvalds | a503121 | 2010-01-21 15:25:19 -0800 | [diff] [blame] | 63 | unsigned int val = *sha1++; |
| 64 | *buf++ = hex[val >> 4]; |
| 65 | *buf++ = hex[val & 0xf]; |
| 66 | } |
| 67 | *buf = '\0'; |
| 68 | |
| 69 | return buffer; |
| 70 | } |
brian m. carlson | aa1c6fd | 2015-03-13 23:39:28 +0000 | [diff] [blame] | 71 | |
brian m. carlson | 55c529a | 2016-06-24 23:09:19 +0000 | [diff] [blame] | 72 | char *oid_to_hex_r(char *buffer, const struct object_id *oid) |
| 73 | { |
| 74 | return sha1_to_hex_r(buffer, oid->hash); |
| 75 | } |
| 76 | |
Jeff King | af49c6d | 2015-09-24 17:05:45 -0400 | [diff] [blame] | 77 | char *sha1_to_hex(const unsigned char *sha1) |
| 78 | { |
| 79 | static int bufno; |
| 80 | static char hexbuffer[4][GIT_SHA1_HEXSZ + 1]; |
René Scharfe | bb84735 | 2016-10-23 19:57:30 +0200 | [diff] [blame] | 81 | bufno = (bufno + 1) % ARRAY_SIZE(hexbuffer); |
| 82 | return sha1_to_hex_r(hexbuffer[bufno], sha1); |
Jeff King | af49c6d | 2015-09-24 17:05:45 -0400 | [diff] [blame] | 83 | } |
| 84 | |
brian m. carlson | aa1c6fd | 2015-03-13 23:39:28 +0000 | [diff] [blame] | 85 | char *oid_to_hex(const struct object_id *oid) |
| 86 | { |
| 87 | return sha1_to_hex(oid->hash); |
| 88 | } |