summaryrefslogtreecommitdiff
path: root/Modules/sha256module.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-10-14 02:13:11 +0200
committerVictor Stinner <victor.stinner@haypocalc.com>2011-10-14 02:13:11 +0200
commitf5cff56a1be70d2c4e5cde5fa4e5d5d92e620dda (patch)
tree0eb7ea39ee5a60f384db53d5729b48d73986920d /Modules/sha256module.c
parente506437b52507609772e8141fdbb5ad2e17471bb (diff)
downloadcpython-git-f5cff56a1be70d2c4e5cde5fa4e5d5d92e620dda.tar.gz
Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
Diffstat (limited to 'Modules/sha256module.c')
-rw-r--r--Modules/sha256module.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/Modules/sha256module.c b/Modules/sha256module.c
index fe2dcfa793..f1ef329366 100644
--- a/Modules/sha256module.c
+++ b/Modules/sha256module.c
@@ -460,13 +460,11 @@ SHA256_hexdigest(SHAobject *self, PyObject *unused)
/* Make hex version of the digest */
for(i=j=0; i<self->digestsize; i++) {
- char c;
+ unsigned char c;
c = (digest[i] >> 4) & 0xf;
- c = (c>9) ? c+'a'-10 : c + '0';
- hex_digest[j++] = c;
+ hex_digest[j++] = Py_hexdigits[c];
c = (digest[i] & 0xf);
- c = (c>9) ? c+'a'-10 : c + '0';
- hex_digest[j++] = c;
+ hex_digest[j++] = Py_hexdigits[c];
}
return retval;
}