md5module: Fix doc strings variable names (GH-22722)

This commit is contained in:
Jakub Jelen 2020-10-20 11:10:43 +02:00 committed by GitHub
parent 5b57fa6940
commit d5d0521270
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -211,7 +211,7 @@ static void md5_compress(struct md5_state *md5, const unsigned char *buf)
/** /**
Initialize the hash state Initialize the hash state
@param sha1 The hash state you wish to initialize @param md5 The hash state you wish to initialize
*/ */
static void static void
md5_init(struct md5_state *md5) md5_init(struct md5_state *md5)
@ -227,7 +227,7 @@ md5_init(struct md5_state *md5)
/** /**
Process a block of memory though the hash 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 in The data to hash
@param inlen The length of the data (octets) @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 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) @param out [out] The destination of the hash (16 bytes)
*/ */
static void static void