diff options
author | Andy Lester <andy@petdance.com> | 2020-02-13 04:53:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 04:53:01 (GMT) |
commit | 597ebed748d0b0c061f8c108bd98270d103286c1 (patch) | |
tree | 238cde281ca5024e2b49dc699a94771c60740092 | |
parent | 8c3aee65ed3aff3668da330ccd6f9ba7b2aa4567 (diff) | |
download | cpython-597ebed748d0b0c061f8c108bd98270d103286c1.zip cpython-597ebed748d0b0c061f8c108bd98270d103286c1.tar.gz cpython-597ebed748d0b0c061f8c108bd98270d103286c1.tar.bz2 |
closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497)
-rw-r--r-- | Modules/md5module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c index d783ae5..ea2bafb 100644 --- a/Modules/md5module.c +++ b/Modules/md5module.c @@ -119,7 +119,7 @@ typedef struct { a = (a + I(b,c,d) + M + t); a = ROLc(a, s) + b; -static void md5_compress(struct md5_state *md5, unsigned char *buf) +static void md5_compress(struct md5_state *md5, const unsigned char *buf) { MD5_INT32 i, W[16], a, b, c, d; @@ -242,7 +242,7 @@ md5_process(struct md5_state *md5, const unsigned char *in, Py_ssize_t inlen) while (inlen > 0) { if (md5->curlen == 0 && inlen >= MD5_BLOCKSIZE) { - md5_compress(md5, (unsigned char *)in); + md5_compress(md5, in); md5->length += MD5_BLOCKSIZE * 8; in += MD5_BLOCKSIZE; inlen -= MD5_BLOCKSIZE; |