Home
last modified time | relevance | path

Searched refs:MD5_BLOCKSIZE (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Modules/
Dmd5module.c40 #define MD5_BLOCKSIZE 64 macro
48 unsigned char buf[MD5_BLOCKSIZE];
244 if (md5->curlen == 0 && inlen >= MD5_BLOCKSIZE) { in md5_process()
246 md5->length += MD5_BLOCKSIZE * 8; in md5_process()
247 in += MD5_BLOCKSIZE; in md5_process()
248 inlen -= MD5_BLOCKSIZE; in md5_process()
250 n = Py_MIN(inlen, (Py_ssize_t)(MD5_BLOCKSIZE - md5->curlen)); in md5_process()
255 if (md5->curlen == MD5_BLOCKSIZE) { in md5_process()
257 md5->length += 8*MD5_BLOCKSIZE; in md5_process()
434 return PyLong_FromLong(MD5_BLOCKSIZE); in MD5_get_block_size()