Lines Matching refs:digest
41 /* The MD5 block size and message digest sizes, in bytes */
268 Terminate the hash to get the digest
387 MD5Type.digest
389 Return the digest value as a bytes object.
396 unsigned char digest[MD5_DIGESTSIZE];
400 md5_done(&temp, digest);
401 return PyBytes_FromStringAndSize((const char *)digest, MD5_DIGESTSIZE);
407 Return the digest value as a string of hexadecimal digits.
414 unsigned char digest[MD5_DIGESTSIZE];
417 /* Get the raw (binary) digest value */
419 md5_done(&temp, digest);
421 return _Py_strhex((const char*)digest, MD5_DIGESTSIZE);