diff options
author | Jakub Jelen <jakuje@gmail.com> | 2020-10-20 09:10:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 09:10:43 (GMT) |
commit | d5d052127059fd99c90ea7a2e948a0242a1d7285 (patch) | |
tree | 143f8fc1d71ce423eec398728950e5457503e1a9 /Modules/md5module.c | |
parent | 5b57fa69408c4856bf0ae02f2eaa3db1ef980ea6 (diff) | |
download | cpython-d5d052127059fd99c90ea7a2e948a0242a1d7285.zip cpython-d5d052127059fd99c90ea7a2e948a0242a1d7285.tar.gz cpython-d5d052127059fd99c90ea7a2e948a0242a1d7285.tar.bz2 |
md5module: Fix doc strings variable names (GH-22722)
Diffstat (limited to 'Modules/md5module.c')
-rw-r--r-- | Modules/md5module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c index 5cd4e94..9bd2bd1 100644 --- a/Modules/md5module.c +++ b/Modules/md5module.c @@ -211,7 +211,7 @@ static void md5_compress(struct md5_state *md5, const unsigned char *buf) /** Initialize the hash state - @param sha1 The hash state you wish to initialize + @param md5 The hash state you wish to initialize */ static void md5_init(struct md5_state *md5) @@ -227,7 +227,7 @@ md5_init(struct md5_state *md5) /** Process a block of memory though the hash - @param sha1 The hash state + @param md5 The hash state @param in The data to hash @param inlen The length of the data (octets) */ @@ -263,7 +263,7 @@ md5_process(struct md5_state *md5, const unsigned char *in, Py_ssize_t inlen) /** Terminate the hash to get the digest - @param sha1 The hash state + @param md5 The hash state @param out [out] The destination of the hash (16 bytes) */ static void |